kblib 0.2.3
General utilities library for modern C++
kblib::fnv::fnv_offset< UInt > Struct Template Reference

The starting value for the FNVa hash algorithm, as a type trait. More...

#include <kblib/hash.h>

Public Attributes

KBLIB_CONSTANT_M UInt value
 

Detailed Description

template<typename UInt>
struct kblib::fnv::fnv_offset< UInt >

The starting value for the FNVa hash algorithm, as a type trait.

Definition at line 128 of file hash.h.

Member Data Documentation

◆ value

template<typename UInt >
KBLIB_CONSTANT_M UInt kblib::fnv::fnv_offset< UInt >::value
Initial value:
= (sizeof(UInt) == sizeof(std::uint64_t)
? fnv_offset<std::uint64_t>::value
: fnv_offset<std::uint32_t>::value)

Definition at line 129 of file hash.h.


The documentation for this struct was generated from the following file: