(count: number)
| 269 | } |
| 270 | |
| 271 | public readUint32List(count: number): number[] { |
| 272 | const numBits = this.readNumBits(); |
| 273 | const value = new Array(count); |
| 274 | for (let i = 0; i < count; i++) { |
| 275 | value[i] = this.readUBits(numBits); |
| 276 | } |
| 277 | return value; |
| 278 | } |
| 279 | |
| 280 | public readBitBoolean() { |
| 281 | return this.readUBits(1) !== 0; |
no test coverage detected