bool empty() const noexcept;
[[nodiscard]] bool empty() const noexcept; // C++20
概要
ノードハンドルが空であれば true
、そうでなければ false
を返す。
例
#include <iostream>
#include <set>
int main()
{
std::set<int>::node_type nh;
std::cout << std::boolalpha << nh.empty();
}
出力
true
バージョン
言語
- C++17
処理系
- Clang: 7.0.0 ✅
- GCC: 7.1.0 ✅
- ICC: ??
- Visual C++: 2017 Update 5 ✅