Random access to items. Index is relative to the current item. This is very fast, faster than array::get(). */
| 93 | /** Random access to items. Index is relative to the current item. |
| 94 | This is very fast, faster than array::get(). */ |
| 95 | const Value* operator[] (unsigned i) const noexcept FLPURE {return ((impl&)*this)[i];} |
| 96 | |
| 97 | /** Returns false when the iterator reaches the end. */ |
| 98 | explicit operator bool() const noexcept FLPURE {return _count > 0;} |
nothing calls this directly
no outgoing calls
no test coverage detected