* Get the value * @this {!FieldModelInt32} * @returns {!object} Result value and its size
()
| 3703 | * @returns {!object} Result value and its size |
| 3704 | */ |
| 3705 | get () { |
| 3706 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 3707 | return { value: 0, size: 0 } |
| 3708 | } |
| 3709 | |
| 3710 | return { value: this.readInt32(this.fbeOffset), size: this.fbeSize } |
| 3711 | } |
| 3712 | |
| 3713 | /** |
| 3714 | * Set the value |