diff --git a/doc/ref.php b/doc/ref.php index d97da8a4..ac52d331 100644 --- a/doc/ref.php +++ b/doc/ref.php @@ -1392,12 +1392,41 @@ EOL; std::pair<const_iterator, const_iterator> + + + + K const& + + std::pair<iterator, iterator> + + + + + K const& + + std::pair<const_iterator, const_iterator> + A range containing all elements with key equivalent to k. - If the container doesn't container any such elements, returns + If the container doesn't contain any such elements, returns std::make_pair(b.end(),b.end()). - + + + + The template <typename K> overloads only participate + in overload resolution if Hash::is_transparent and + Pred::is_transparent are valid member typedefs. The + library assumes that Hash is callable with both + K and Key and that Pred is + transparent. This enables heterogeneous lookup which avoids the cost of + instantiating an instance of the Key type. + +