Returns the current item and advances to the next. */
| 89 | |
| 90 | /** Returns the current item and advances to the next. */ |
| 91 | const Value* read() noexcept {auto v = _value; ++(*this); return v;} |
| 92 | |
| 93 | /** Random access to items. Index is relative to the current item. |
| 94 | This is very fast, faster than array::get(). */ |