MCPcopy Create free account
hub / github.com/activeloopai/deeplake / skip_empty_containers

Method skip_empty_containers

cpp/icm/flat_iterator.hpp:181–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

179 }
180
181 void skip_empty_containers()
182 {
183 while (parent_iterator_ != containers_->end() - 1 && child_iterator_ == (*parent_iterator_).end()) {
184 ++parent_iterator_;
185 child_iterator_ = parent_iterator_->begin();
186 }
187 }
188
189 const std::vector<C>* containers_;
190 const std::vector<value_type>* offsets_;

Callers

nothing calls this directly

Calls 2

endMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected