MCPcopy Create free account
hub / github.com/ceph/ceph / equal_range

Method equal_range

src/include/cpp-btree/btree.h:1072–1074  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1070 // the pair is equal to upper_bound(key).
1071 template <typename K>
1072 std::pair<iterator, iterator> equal_range(const K &key) {
1073 return {lower_bound(key), upper_bound(key)};
1074 }
1075 template <typename K>
1076 std::pair<const_iterator, const_iterator> equal_range(const K &key) const {
1077 return {lower_bound(key), upper_bound(key)};

Callers 14

scan_linksMethod · 0.45
leader_update_setMethod · 0.45
leader_upkeep_setMethod · 0.45
try_rebalanceMethod · 0.45
update_rangeMethod · 0.45
rmissing_eraseMethod · 0.45
rmissing_insertMethod · 0.45
find_matched_hookMethod · 0.45
for_each_changeMethod · 0.45
unregister_clientMethod · 0.45

Calls

no outgoing calls

Tested by 1