std::hash(std::bitset) (3) - Linux Manuals
std::hash(std::bitset): std::hash(std::bitset)
NAME
std::hash(std::bitset) - std::hash(std::bitset)
Synopsis
template<size_t N> struct hash<bitset<N>>; (since C++11)
The template specialization of std::hash for std::bitset<N> allows users to obtain hashes of objects of type std::bitset<N>.
Example
The following code shows one possible output of a hash function used on several bitsets:
// Run this code
Output:
See also
hash hash function object
(C++11)