Is this correct?
| 299 | |
| 300 | // Is this correct? |
| 301 | void get_range(Optional<DataValue>& min, Optional<DataValue>& max) override { |
| 302 | DataValue arrayHeader = DataValue::arrayOfLength(size); |
| 303 | min = arrayHeader; |
| 304 | max = arrayHeader; |
| 305 | } |
| 306 | |
| 307 | uint32_t size; |
| 308 |
nothing calls this directly
no outgoing calls
no test coverage detected