Boost C++ Libraries Boost.Bimap Home Libraries People FAQ More

PrevUpHomeNext

unordered_multiset_of_relation Struct Template Reference

Set Of Relation Specification. More...

#include <unordered_multiset_of.hpp>

Inheritance diagram for unordered_multiset_of_relation:

Inheritance graph
Collaboration diagram for unordered_multiset_of_relation:

Collaboration graph
List of all members.

Public Types

typedef HashFunctor hasher
 Hash Functor that takes value_type objects.
typedef EqualKey key_equal
 Functor that compare two value_type objects for equality.
typedef mpl::bool_< false > left_mutable_key
typedef mpl::bool_< false > right_mutable_key

Detailed Description

template<class HashFunctor = hash< _relation >, class EqualKey = std::equal_to< _relation >>
struct boost::bimaps::unordered_multiset_of_relation< HashFunctor, EqualKey >

Set Of Relation Specification.

This struct is similar to unordered_multiset_of but it is bind logically to a relation. It is used in the bimap instantiation to specify the desired type of the main view. This struct implements internally a metafunction named bind_to that manages the quite complicated task of finding the right type of the set for the relation.

template<class Relation>
struct bind_to
{
    typedef -unspecified- type;
};

See also unordered_multiset_of, is_set_type_of_relation.

Definition at line 180 of file unordered_multiset_of.hpp.


The documentation for this struct was generated from the following file:
Copyright 2006 Matias Capeletto

PrevUpHomeNext