最終更新日時(UTC):
が更新

履歴 編集

function

::node_handle::empty(C++17)

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

処理系

参照