* Read UInt8 value from the field model buffer * @this {!FieldModelBase} * @param {!number} offset Offset * @returns {!number} UInt8 value
(offset)
| 665 | * @returns {!number} UInt8 value |
| 666 | */ |
| 667 | readUInt8 (offset) { |
| 668 | offset = offset >>> 0 |
| 669 | offset += this._buffer.offset |
| 670 | this._buffer.checkOffset(offset, 1) |
| 671 | return this._buffer.buffer[offset] |
| 672 | } |
| 673 | |
| 674 | /** |
| 675 | * Read Int16 value from the field model buffer |