命名空间
变体
操作

std::hash <std::experimental::optional>

来自 cppreference.com
 
 
实验性
技术规范
文件系统库 (文件系统 TS)
库基础 (库基础 TS)
库基础 2 (库基础 TS v2)
库基础 3 (库基础 TS v3)
并行扩展 (并行 TS)
并行扩展 2 (并行 TS v2)
并发扩展 (并发 TS)
并发扩展 2 (并发 TS v2)
概念 (概念 TS)
范围 (范围 TS)
反射 (反射 TS)
数学特殊函数 (特殊函数 TR)
实验性非 TS
模式匹配
线性代数
std::execution
契约
2D 图形
 
 
 
定义在头文件 <experimental/optional>
template< class T >
struct hash<std::experimental::optional<T>>;
(库基础 TS)

std::experimental::optionalstd::hash 模板特化允许用户获取 optional 对象中包含值的哈希值。

[编辑] 模板参数

T - optional 对象中包含的值的类型。特化 std::hash<T> 必须满足类模板 hash 的要求。

[编辑] 示例

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

可能的输出

def abc (null)

[编辑] 另请参阅

(C++11)
哈希函数对象
(类模板) [编辑]