All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GaudiUtils::GenericHash< T > Struct Template Reference

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

#include <GaudiKernel/Hash.h>

Inheritance diagram for GaudiUtils::GenericHash< T >:
Collaboration diagram for GaudiUtils::GenericHash< T >:

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 30 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 34 of file Hash.h.

34  {
35  std::size_t res = 0 ;
36  std::size_t len = sizeof(T) ;
37  const char* p = reinterpret_cast<const char*>( &key );
38  while( len-- ) { res = ( res << 1 ) ^ *p; ++p; }
39  return res;
40  }

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