| 46 | iterator(iterator&&); |
| 47 | ~iterator(); |
| 48 | slice key() const noexcept {return _key;} |
| 49 | Value value() const noexcept {return _value;} |
| 50 | explicit operator bool() const noexcept {return !!_value;} |
| 51 | iterator& operator ++(); |
nothing calls this directly
no outgoing calls
no test coverage detected