template struct Poco::HashMapEntry

This class template is used internally by HashMap.

#include <HashMap.h>

template <
    class Key,
    class Value
    >
struct HashMapEntry
{
    // fields

    Key first;
    Value second;

    // construction

    HashMapEntry();
    HashMapEntry(const Key& key);

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

    // methods

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

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