mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 19:37:14 +02:00
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:
@ -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]``;
|
||||
|
Reference in New Issue
Block a user