Searched refs:itImpl (Results 1 – 2 of 2) sorted by relevance
211 : itImpl(i_implIter) {} in const_iterator()218 : itImpl() {} in const_iterator()226 { return itImpl == i_other.itImpl; } in operator ==()229 { return itImpl != i_other.itImpl; } in operator !=()233 { return *(*itImpl); } in operator *()237 { ++itImpl; return *this; } in operator ++()239 { return const_iterator(itImpl++); } in operator ++()243 { --itImpl; return *this; } in operator --()245 { return const_iterator(itImpl--); } in operator --()250 { return itImpl < i_other.itImpl; } in operator <()[all …]
58 : itImpl() {} in iterator()61 : itImpl(i_impl) {} in iterator()66 { return itImpl == i_other.itImpl; } in operator ==()69 { return itImpl != i_other.itImpl; } in operator !=()70 ENTITY & operator*() const { csv_assert(*itImpl != 0); in operator *()71 return *(*itImpl); } in operator *()72 self & operator++() { ++itImpl; return *this; } in operator ++()73 self operator++(int) { return self(itImpl++); } in operator ++()77 impl_type ImplIterator() const { return itImpl; } in ImplIterator()80 impl_type itImpl; member in ary::stg::iterator[all …]