std::hash<std::optional> (3) - Linux Manuals
std::hash<std::optional>: std::hash<std::optional>
NAME
std::hash<std::optional> - std::hash<std::optional>
Synopsis
Defined in header <optional>
template<class T> (since C++17)
struct hash<std::optional<T>>;
The template specialization of std::hash for the std::optional class allows users to obtain hashes of the values contained in optional objects.
The specialization std::hash<optional<T>> is enabled (see std::hash) if std::hash<std::remove_const_t<T>> is enabled, and is disabled otherwise.
When enabled, for an object o of type std::optional<T> that contains a value, std::hash<std::optional<T>>()(o) evaluates to the same value as std::hash<std::remove_const_t<T>>()(*o). For an optional that does not contain a value, the hash is unspecified.
The member functions of this specialization are not guaranteed to be noexcept because the hash of the underlying type might throw.
Template parameters
T - the type of the value contained in optional object
Example
// Run this code
Possible output:
See also
hash hash function object
(C++11)