QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::algorithm::hash::fnv1a_hash< T > Struct Template Reference

A STL compatible hash based on the high quality FNV1 hash algorithm. More...

#include "hash.hpp"

Public Types

using working_type = uint32_t
 

Public Member Functions

size_t operator() (T v) const
 

Static Public Member Functions

static constexpr working_type begin () noexcept
 
static constexpr void add (working_type &ret, T v) noexcept
 

Static Public Attributes

static constexpr working_type basis = 2166136261U
 
static constexpr working_type prime = 16777619U
 

Detailed Description

template<class T>
struct quickcpplib::_xxx::algorithm::hash::fnv1a_hash< T >

A STL compatible hash based on the high quality FNV1 hash algorithm.

Member Typedef Documentation

◆ working_type

template<class T >
using quickcpplib::_xxx::algorithm::hash::fnv1a_hash< T >::working_type = uint32_t

Member Function Documentation

◆ begin()

template<class T >
static constexpr working_type quickcpplib::_xxx::algorithm::hash::fnv1a_hash< T >::begin ( )
inlinestaticconstexprnoexcept
58 {
59 return basis;
60 }
static constexpr working_type basis
Definition hash.hpp:52

◆ add()

template<class T >
static constexpr void quickcpplib::_xxx::algorithm::hash::fnv1a_hash< T >::add ( working_type ret,
v 
)
inlinestaticconstexprnoexcept
62 {
63 const unsigned char *_v = (const unsigned char *) &v;
64 for(size_t n = 0; n < sizeof(T); n++)
65 {
66 ret ^= (working_type) _v[n];
67 ret *= prime;
68 }
69 }
static constexpr working_type prime
Definition hash.hpp:52
uint32_t working_type
Definition hash.hpp:51

◆ operator()()

template<class T >
size_t quickcpplib::_xxx::algorithm::hash::fnv1a_hash< T >::operator() ( v) const
inline
71 {
72 auto ret = begin();
73 add(ret, v);
74#if !defined(__SIZEOF_SIZE_T__) || (__SIZEOF_SIZE_T__ * __CHAR_BIT__) < QUICKCPPLIB_PLATFORM_NATIVE_BITLENGTH
75 return size_t(ret);
76#else
77 return ret;
78#endif
79 }
static constexpr void add(working_type &ret, T v) noexcept
Definition hash.hpp:61
static constexpr working_type begin() noexcept
Definition hash.hpp:57

Member Data Documentation

◆ basis

template<class T >
constexpr working_type quickcpplib::_xxx::algorithm::hash::fnv1a_hash< T >::basis = 2166136261U
staticconstexpr

◆ prime

template<class T >
constexpr working_type quickcpplib::_xxx::algorithm::hash::fnv1a_hash< T >::prime = 16777619U
static

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