This enables e.g. `array[10] = 17`
| 131 | |
| 132 | // This enables e.g. `array[10] = 17` |
| 133 | inline keyref<MutableArray,uint32_t> operator[] (int i) { |
| 134 | return keyref<MutableArray,uint32_t>(*this, i); |
| 135 | } |
| 136 | |
| 137 | inline Value operator[] (int index) const {return get(index);} // const version |
| 138 |
nothing calls this directly
no outgoing calls
no test coverage detected