The Gaudi Framework  v30r3 (a5ef0a68)
GaudiUtils::GenericHash< T > Struct Template Reference

Generic hash implementation (for easy migration to the new Hash class). More...

#include <GaudiKernel/Hash.h>

Public Member Functions

std::size_t operator() (const T &key) const
 the generic hash function More...
 

Detailed Description

template<class T>
struct GaudiUtils::GenericHash< T >

Generic hash implementation (for easy migration to the new Hash class).

Definition at line 29 of file Hash.h.

Member Function Documentation

template<class T >
std::size_t GaudiUtils::GenericHash< T >::operator() ( const T &  key) const
inline

the generic hash function

Definition at line 32 of file Hash.h.

33  {
34  const char* p = reinterpret_cast<const char*>( &key );
35  return std::accumulate( p, p + sizeof( T ), std::size_t{0},
36  []( std::size_t res, const char& c ) { return ( res << 1 ) ^ c; } );
37  }
T accumulate(T...args)

The documentation for this struct was generated from the following file: