Convenience alias for the default hashing functor of Abseil hash-based (unordered) containers.
Declared in <absl/container/hash_container_defaults.h>
template<typename T>
using DefaultHashContainerHash = /* implementation-defined */::hash_default_hash<T>;
DefaultHashContainerHash is the functor that is used by default by Abseil hash-based (unordered) containers for hashing when the Hash type argument is not explicitly specified.
This type alias can be used by generic code that wants to provide more flexibility for defining underlying containers.