get method
Get a single byte */
Implementation
int get() {
if (readPos < length) {
return array![readPos++];
}
throw 'Read past end of buffer';
}
Get a single byte */
int get() {
if (readPos < length) {
return array![readPos++];
}
throw 'Read past end of buffer';
}