- cpp17[meta cpp]
- node_handle[meta category]
- node_handle[meta class]
- function[meta id-type]
- [meta namespace]
value_type& value() const; // map コンテナには存在ない
このノードハンドルによって管理されている set
コンテナ要素を指す参照を返す。
empty() == false
ptr_
が指す container_node_type
オブジェクト内の value_type
サブオブジェクトへの参照。
投げない。
#include <iostream>
#include <set>
int main()
{
std::set s = { 1, 2, 3 };
auto nh = s.extract(s.begin());
std::cout << nh.value();
}
- value[color ff0000]
1
- C++17
- Clang: 7.0.0 [mark verified]
- GCC: 7.1.0 [mark verified]
- ICC: ??
- Visual C++: 2017 Update 5 [mark verified]