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

Method not_found

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

Source from the content-addressed store, hash-verified

50 void insert(K const& k) { s.insert(k, 1); }
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)); }

Callers

nothing calls this directly

Calls 3

atLatestMethod · 0.80
resultClass · 0.70
endMethod · 0.45

Tested by

no test coverage detected