numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
num_collect::util::concepts::hash_function Concept Reference

Concept of classes of hash functions. More...

#include <num_collect/util/concepts/hash_function.h>

Concept definition

template<typename Hash, typename Key>
concept num_collect::util::concepts::hash_function = requires(const Hash& hash, const Key& key) {
}
Concept of same types.
Definition same_as.h:35
Concept of classes of hash functions.

Detailed Description

Concept of classes of hash functions.

Template Parameters
HashType of the hash function.
KeyType of keys.

Definition at line 35 of file hash_function.h.