5#ifndef DUNE_COMMON_CONCEPTS_HASHABLE_HH
6#define DUNE_COMMON_CONCEPTS_HASHABLE_HH
9#if __has_include(<version>) && __has_include(<concepts>)
11 #if __cpp_concepts >= 201907L && __cpp_lib_concepts >= 202002L
12 #ifndef DUNE_ENABLE_CONCEPTS
13 #define DUNE_ENABLE_CONCEPTS 1
18#if DUNE_ENABLE_CONCEPTS
48concept Hashable =
requires(T a)
50 { std::hash<T>{}(a) } -> std::convertible_to<std::size_t>;
Namespace for concepts.
Definition: concept.hh:34