MCPcopy Create free account
hub / github.com/couchbase/fleece / iterator

Method iterator

Fleece/Mutable/HeapArray.cc:167–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

165
166
167 HeapArray::iterator::iterator(const HeapArray *ma) noexcept
168 :_iter(ma->_items.begin())
169 ,_iterEnd(ma->_items.end())
170 ,_sourceIter(ma->_source)
171 {
172 ++(*this);
173 }
174
175 HeapArray::iterator::iterator(const MutableArray *ma) noexcept
176 :iterator((HeapArray*)HeapCollection::asHeapValue(ma))

Callers

nothing calls this directly

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected