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