Minsky
Public Member Functions
|
List of all members
std::hash< vector< T > > Struct Template Reference
Collaboration diagram for std::hash< vector< T > >:
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:
engine/
CSVParser.cc
std
hash< vector< T > >
Generated on Tue Mar 18 2025 13:00:37 for Minsky by
1.8.14