Poco

template < class Key, class Value >

struct HashMapEntry

Library: Foundation
Package: Hashing
Header: Poco/HashMap.h

Description

This class template is used internally by HashMap.

Member Summary

Member Functions: operator !=, operator ==

Constructors

HashMapEntry inline

HashMapEntry();

HashMapEntry inline

HashMapEntry(
    const Key & key
);

HashMapEntry inline

HashMapEntry(
    const Key & key,
    const Value & value
);

Member Functions

operator != inline

bool operator != (
    const HashMapEntry & entry
) const;

operator == inline

bool operator == (
    const HashMapEntry & entry
) const;

Variables

first

Key first;

second

Value second;