(index, value)
| 191 | } |
| 192 | |
| 193 | set(index, value) { |
| 194 | const buffer = this.buffer; |
| 195 | const base = index * 8; |
| 196 | const values = lohi_from_one(value); |
| 197 | |
| 198 | buffer.setUint32(base, values[0], true); |
| 199 | buffer.setUint32(base + 4, values[1], true); |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | // mutable Int (we are explicitly using Int's private fields) |
nothing calls this directly
no test coverage detected