template struct Poco::Hash

Overview

A generic hash function. Moreā€¦

#include <Hash.h>

template <class T>
struct Hash
{
    // methods

    std::size_t
    operator()(T value) const;
};

Detailed Documentation

A generic hash function.

Methods

std::size_t
operator()(T value) const

Returns the hash for the given value.