(len, copy=true)
| 135 | } |
| 136 | |
| 137 | rQshiftBytes(len, copy=true) { |
| 138 | this._rQi += len; |
| 139 | if (copy) { |
| 140 | return this._rQ.slice(this._rQi - len, this._rQi); |
| 141 | } else { |
| 142 | return this._rQ.subarray(this._rQi - len, this._rQi); |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | rQshiftTo(target, len) { |
| 147 | // TODO: make this just use set with views when using a ArrayBuffer to store the rQ |
no test coverage detected