ATLAS Offline Software
|
C++ native wrapper for the C xxhash API. More...
#include <cstdint>
#include <type_traits>
Go to the source code of this file.
Namespaces | |
xxh3 | |
Wrapper namespace for our xxhash (xxh3) wrapper function. | |
Functions | |
std::uint64_t | xxh3::hash64 (const void *data, std::size_t size) |
Passthrough to XXH3_64bits. More... | |
template<typename Cont > | |
std::uint64_t | xxh3::hash64 (const Cont &cont) |
Hash a container with data() and size() members. More... | |
template<typename POD , typename = std::enable_if_t<std::is_standard_layout_v<POD> && std::is_trivial_v<POD>>> | |
std::uint64_t | xxh3::hash64 (const POD &pod) |
Hash a POD value / struct. More... | |