MCPcopy Create free account
hub / github.com/Inori/GPCS4 / equal_range

Function equal_range

3rdParty/boost/boost/unordered/unordered_map.hpp:841–851  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

839
840 template <class Key>
841 typename boost::enable_if_c<detail::are_transparent<Key, H, P>::value,
842 std::pair<iterator, iterator> >::type
843 equal_range(const Key& key)
844 {
845 node_pointer p = table_.find_node_impl(
846 table::policy::apply_hash(this->hash_function(), key), key,
847 this->key_eq());
848
849 return std::make_pair(
850 iterator(p), iterator(p ? table::next_node(p) : p));
851 }
852
853 template <class Key>
854 typename boost::enable_if_c<detail::are_transparent<Key, H, P>::value,

Callers 2

equal_rangeMethod · 0.50
edge_rangeFunction · 0.50

Calls 3

iteratorClass · 0.50
hash_functionMethod · 0.45
key_eqMethod · 0.45

Tested by

no test coverage detected