| 145 | inline bool next(); |
| 146 | inline valueptr operator -> () const {return valueptr(value());} |
| 147 | inline Value operator * () const {return value();} |
| 148 | inline explicit operator bool() const {return (bool)value();} |
| 149 | inline iterator& operator++ () {next(); return *this;} |
| 150 | inline bool operator!= (const iterator&) {return value() != nullptr;} |
nothing calls this directly
no outgoing calls
no test coverage detected