mutable
A Database System for Research and Fast Prototyping
Loading...
Searching...
No Matches
Data Structures | Namespaces | Functions | Variables
hash.hpp File Reference
#include <concepts>
#include <cstddef>
#include <functional>
Include dependency graph for hash.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  std::hash< Container >
 
struct  std::hash< std::reference_wrapper< T > >
 Convenience specialization to provide hashing of std::reference_wrapper by hashing the referenced object. More...
 

Namespaces

namespace  std
 STL namespace.
 

Functions

template<typename T >
bool std::operator== (std::reference_wrapper< T > left, std::reference_wrapper< T > right)
 

Variables

template<typename Container >
requires (Container C)
 std::and { {C.cbegin() == C.cend() } -> std::same_as<bool>
 Conveniance specialization to provide hasing of std::vector by computing a rolling hash over the elements.