CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
__gnu_cxx::hash< std::string > Struct Template Reference

#include <L1GtAlgorithmEvaluation.h>

Public Member Functions

size_t operator() (const std::string &x) const
 

Detailed Description

template<>
struct __gnu_cxx::hash< std::string >

Explicit template specialization of hash of a string class, which just uses the internal char* representation as a wrapper.

Definition at line 45 of file L1GtAlgorithmEvaluation.h.

Member Function Documentation

size_t __gnu_cxx::hash< std::string >::operator() ( const std::string &  x) const
inline

Definition at line 46 of file L1GtAlgorithmEvaluation.h.

46  {
47  return hash<const char*> ()(x.c_str());
48  }
x
Definition: VDTMath.h:216