MCPcopy Create free account
hub / github.com/apple/foundationdb / begin

Method begin

fdbclient/VersionedMap.cpp:53–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51 result find(K const& k) const { return result(s.atLatest().find(k)); }
52 result not_found() const { return result(s.atLatest().end()); }
53 result begin() const { return result(s.atLatest().begin()); }
54 result end() const { return result(s.atLatest().end()); }
55 result lower_bound(K const& k) const { return result(s.atLatest().lower_bound(k)); }
56 result upper_bound(K const& k) const { return result(s.atLatest().upper_bound(k)); }

Callers

nothing calls this directly

Calls 2

atLatestMethod · 0.80
resultClass · 0.70

Tested by

no test coverage detected