W3cubDocs

/C++

std::hash <std::optional>

Defined in header <optional>
template<class T>
struct hash<std::optional<T>>;
(since C++17)

The template specialization of std::hash for the std::optional class allows users to obtain hashes of the values contained in optional objects.

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<T>()(*o). For an optional that does not contain a value, the hash is unspecified.

Template parameters

T - the type of the value contained in optional object. The specialization std::hash<T> must meet the requirements of class template hash.

Example

#include <optional>
#include <unordered_set>
#include <string>
#include <iostream>
using namespace std::literals;
int main()
{
    // hash<optional> makes it possible to use unordered_set
    std::unordered_set<std::optional<std::string>> s = {
            "abc"s, std::nullopt, "def"s
    };
 
    for(const auto& o : s)
        std::cout << o.value_or("(null)") << ' ';
}

Possible output:

def abc (null)

See also

(C++11)
hash function object
(class template)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/utility/optional/hash