Gaudi Framework, version v25r2

Home   Generated: Wed Jun 4 2014
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Member Functions | List of all members
GaudiUtils::GenericHash< T > Struct Template Reference

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

#include <Hash.h>

Inheritance diagram for GaudiUtils::GenericHash< T >:
Inheritance graph
[legend]
Collaboration diagram for GaudiUtils::GenericHash< T >:
Collaboration graph
[legend]

Public Member Functions

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

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.

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

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

Generated at Wed Jun 4 2014 14:49:06 for Gaudi Framework, version v25r2 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004