Minsky
std::hash< vector< T > > Struct Template Reference
Collaboration diagram for std::hash< vector< T > >:
Collaboration graph

Public Member Functions

size_t operator() (const vector< T > &x) const
 

Detailed Description

template<class T>
struct std::hash< vector< T > >

Definition at line 359 of file CSVParser.cc.

Member Function Documentation

◆ operator()()

template<class T >
size_t std::hash< vector< T > >::operator() ( const vector< T > &  x) const
inline

Definition at line 361 of file CSVParser.cc.

361  {
362  size_t r=0;
363  for (auto& i: x) r^=std::hash<T>()(i);
364  return r;
365  }

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