Go to the source code of this file.
|
| namespace | Foam |
| | Namespace for OpenFOAM.
|
Original source file Hash.H
Definition in file Hash.H.
◆ FOAM_HASH_SPECIALIZATION
| #define FOAM_HASH_SPECIALIZATION |
( |
| Type | ) |
|
Value: \ \ \
template<> \
struct Hash<Type> \
{ \
unsigned operator()(const Type val) const \
{ \
return static_cast<unsigned>(val); \
} \
unsigned operator()(const Type val, unsigned seed) const \
{ \
} \
}
unsigned Hasher(const void *data, size_t len, unsigned seed=0)
Bob Jenkins's 96-bit mixer hashing function (lookup3).
Definition at line 89 of file Hash.H.