(count: number)
| 260 | } |
| 261 | |
| 262 | public readInt32List(count: number): number[] { |
| 263 | const numBits = this.readNumBits(); |
| 264 | const value = new Array(count); |
| 265 | for (let i = 0; i < count; i++) { |
| 266 | value[i] = this.readBits(numBits); |
| 267 | } |
| 268 | return value; |
| 269 | } |
| 270 | |
| 271 | public readUint32List(count: number): number[] { |
| 272 | const numBits = this.readNumBits(); |
nothing calls this directly
no test coverage detected