| 125 | inline Value get(uint32_t index) const; |
| 126 | |
| 127 | inline Value operator[] (int index) const {return get(index);} |
| 128 | inline Value operator[] (const KeyPath &kp) const {return Value::operator[](kp);} |
| 129 | |
| 130 | Array& operator= (Array a) {_val = a._val; return *this;} |
nothing calls this directly
no outgoing calls
no test coverage detected