struct HashSelect

Defined at line 916 of file ../../third_party/abseil-cpp/absl/hash/internal/hash.h

HashSelect

Type trait to select the appropriate hash implementation to use.

HashSelect::type

<T

> will give the proper hash implementation, to be invoked

as:

HashSelect::type

<T

>::Invoke(state, value)

Also, HashSelect::type

<T

>::value is a boolean equal to `true` if there is a

valid `Invoke` function. Types that are not hashable will have a ::value of

`false`.

Records