Tools.h++ Class Reference

Table Of Contents
Click on the banner to return to the Class Reference home page.
©Copyright 1996 Rogue Wave Software
RWTPtrHashMultiMap<K,T,H,EQ>
Synopsis
Standard C++ Library Dependent!
Description
Persistence
Examples
Related Classes
Public Typedefs
Public Constructors
Public Member Operators
Public Member Functions
Related Global Operators
Synopsis
#include <rw/tphmmap.h>
RWTPtrHashMultiMap<K,T,H,EQ> m;
Standard C++ Library Dependent!
RWTPtrHashMultiMap requires the Standard C++ Library.
Description
This class maintains a pointer-based collection of associatoins of type pair<K* const, T*>. These
pairs are stored according to a hash object of type H. H must provide a hash function on elements of
type K via a public member
unsigned long operator()(const K& x)
Equivalent keys within the collection will be grouped together based on an equality object of type
EQ. EQ must ensure this grouping via public member