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

Method lower_bound

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

Source from the content-addressed store, hash-verified

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)); }
57 void erase(K const& k) { s.erase(k); }
58};

Callers 6

triggerWatchesFunction · 0.45
RYWIterator.cppFile · 0.45
clearMethod · 0.45
clearMethod · 0.45
insertMutationBoundaryFunction · 0.45
applyDeltaFunction · 0.45

Calls 2

atLatestMethod · 0.80
resultClass · 0.70

Tested by 1

clearMethod · 0.36