nfx-hashing 0.1.2
Modern C++20 header-only hashing library with hardware acceleration
Loading...
Searching...
No Matches
nfx::hashing::Hash32or64 Concept Reference

Concept requiring type to be either uint32_t or uint64_t. More...

#include <nfx/hashing/Concepts.h>

Concept definition

template<typename T>
concept nfx::hashing::Hash32or64 = std::same_as<T, uint32_t> || std::same_as<T, uint64_t>
Concept requiring type to be either uint32_t or uint64_t.
Definition Concepts.h:46

Detailed Description

Concept requiring type to be either uint32_t or uint64_t.

Used to constrain hash functions to supported integer sizes

Definition at line 46 of file Concepts.h.