Library: Foundation
Package: Hashing
Header: Poco/HashMap.h
This class template is used internally by HashMap.
Member Functions: operator !=, operator ==
 
 HashMapEntry();
 
 HashMapEntry(
    const Key & key
);
 
 HashMapEntry(
    const Key & key,
    const Value & value
);
 
 bool operator != (
    const HashMapEntry & entry
) const;
 
 bool operator == (
    const HashMapEntry & entry
) const;
Key first;
Value second;