A few reference links for boost::hash, it might be better to link to the

first page of the Boost.Hash documentation though.


[SVN r41997]
This commit is contained in:
Daniel James
2007-12-13 00:41:30 +00:00
parent 27e055b228
commit 6054f3ff42

View File

@ -45,14 +45,14 @@ details). If accepted the containers should also be added to __boost-tr1__.
namespace boost {
template <
class Key,
class Hash = boost::hash<Key>,
class Hash = ``[classref boost::hash]``<Key>,
class Pred = std::equal_to<Key>,
class Alloc = std::allocator<Key> >
class ``[classref boost::unordered_set unordered_set]``;
template<
class Key,
class Hash = boost::hash<Key>,
class Hash = ``[classref boost::hash]``<Key>,
class Pred = std::equal_to<Key>,
class Alloc = std::allocator<Key> >
class ``[classref boost::unordered_multiset unordered_multiset]``;
@ -64,14 +64,14 @@ details). If accepted the containers should also be added to __boost-tr1__.
namespace boost {
template <
class Key, class T,
class Hash = boost::hash<Key>,
class Hash = ``[classref boost::hash]``<Key>,
class Pred = std::equal_to<Key>,
class Alloc = std::allocator<Key> >
class ``[classref boost::unordered_map unordered_map]``;
template<
class Key, class T,
class Hash = boost::hash<Key>,
class Hash = ``[classref boost::hash]``<Key>,
class Pred = std::equal_to<Key>,
class Alloc = std::allocator<Key> >
class ``[classref boost::unordered_multimap unordered_multimap]``;