[#absl-DefaultHashContainerHash] = xref:absl.adoc[absl]::DefaultHashContainerHash :relfileprefix: ../ :mrdocs: Convenience alias for the default hashing functor of Abseil hash‐based (unordered) containers. == Synopsis Declared in `<absl/container/hash_container_defaults.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> using DefaultHashContainerHash = /* implementation-defined */::hash_default_hash<T>; ---- == Description `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. [.small]#Created with https://www.mrdocs.com[MrDocs]#