Struct default_ranged_hash
Synopsis
#include <include/EASTL/internal/hashtable.h>
struct default_ranged_hash
Description
Default ranged hash function H. In principle it should be a function object composed from objects of type H1 and H2 such that h(k, n) = h2(h1(k), n), but that would mean making extra copies of h1 and h2. So instead we'll just use a tag to tell class template hashtable to do that composition.
Source
Lines 406-406 in include/EASTL/internal/hashtable.h.
struct default_ranged_hash{ };