* Get the value * @this {!FieldModelFlagsTyped} * @returns {!object} Result value and its size
()
| 1222 | * @returns {!object} Result value and its size |
| 1223 | */ |
| 1224 | get () { |
| 1225 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 1226 | return { value: new FlagsTyped(), size: 0 } |
| 1227 | } |
| 1228 | |
| 1229 | return { value: new FlagsTyped(this.readUInt64(this.fbeOffset).toNumber()), size: this.fbeSize } |
| 1230 | } |
| 1231 | |
| 1232 | /** |
| 1233 | * Set the value |
nothing calls this directly
no test coverage detected