(value)
| 2614 | this.writeU8a(ext.data); |
| 2615 | } |
| 2616 | writeU8(value) { |
| 2617 | this.ensureBufferSizeToWrite(1); |
| 2618 | this.view.setUint8(this.pos, value); |
| 2619 | this.pos++; |
| 2620 | } |
| 2621 | writeU8a(values) { |
| 2622 | const size = values.length; |
| 2623 | this.ensureBufferSizeToWrite(size); |
no test coverage detected