| 86 | const Value* value() const noexcept FLPURE {return _value;} |
| 87 | explicit operator const Value* () const noexcept FLPURE {return _value;} |
| 88 | const Value* operator-> () const noexcept FLPURE {return _value;} |
| 89 | |
| 90 | /** Returns the current item and advances to the next. */ |
| 91 | const Value* read() noexcept {auto v = _value; ++(*this); return v;} |
nothing calls this directly
no outgoing calls
no test coverage detected