pushIndefinite method
Append a special byte representing indefinite length for the provided major tag.
Implementation
void pushIndefinite(int majorTag) {
majorTag <<= 5;
pushBytes([majorTag | NumBytes.indefinite]);
}
Append a special byte representing indefinite length for the provided major tag.
void pushIndefinite(int majorTag) {
majorTag <<= 5;
pushBytes([majorTag | NumBytes.indefinite]);
}