* A boolean value indicating whether the writer has reached the end of the binary data.
()
| 48 | * A boolean value indicating whether the writer has reached the end of the binary data. |
| 49 | */ |
| 50 | get isFull(): boolean { |
| 51 | return this.offset + 1 >= this.view.byteLength; |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * The current offset in the binary data. |
nothing calls this directly
no outgoing calls
no test coverage detected