MCPcopy Create free account
hub / github.com/FoundationDB/fdb-document-layer / operator++

Method operator++

src/ExtUtil.actor.cpp:265–269  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

263}
264
265Projection::Iterator Projection::Iterator::operator++(int) {
266 Projection::Iterator tmp = *this;
267 operator++();
268 return tmp;
269}
270
271bool Projection::Iterator::operator==(Projection::Iterator const& other) const {
272 return this->path == other.path && this->stack == other.stack;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected