* Get the value * @this {!FieldModelUInt64} * @returns {!object} Result value and its size
()
| 3907 | * @returns {!object} Result value and its size |
| 3908 | */ |
| 3909 | get () { |
| 3910 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 3911 | return { value: new UInt64(0, 0), size: 0 } |
| 3912 | } |
| 3913 | |
| 3914 | return { value: this.readUInt64(this.fbeOffset), size: this.fbeSize } |
| 3915 | } |
| 3916 | |
| 3917 | /** |
| 3918 | * Set the value |
nothing calls this directly
no test coverage detected