◆ BaseSegmentIterator()
template<
class T , bool SUPPORTS_LAZY_LOADING = false>
23848 : tree(tree_p), current(current_p), lock(lock) {
23849 }
◆ Next()
template<
class T , bool SUPPORTS_LAZY_LOADING = false>
23856 {
23857 current = lock ? tree.GetNextSegment(*lock, *current) : tree.GetNextSegment(*current);
23858 }
◆ operator++()
template<
class T , bool SUPPORTS_LAZY_LOADING = false>
23860 {
23861 Next();
23862 return *this;
23863 }
◆ operator!=()
template<
class T , bool SUPPORTS_LAZY_LOADING = false>
23864 {
23865 return current != other.current;
23866 }
The documentation for this class was generated from the following file: