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

履歴 編集

function

::node_handle::get_allocator(C++17)

allocator_type get_allocator() const;

概要

格納されているアロケータ(元のコンテナのアロケータ)のコピーを返す。

要件

empty() == false

戻り値

*alloc_

例外

投げない。

#include <set>

int main()
{
  std::set s = { 1, 2, 3 };
  auto nh = s.extract(s.begin());
  [[maybe_unused]] auto alloc = nh.get_allocator();
}

出力

バージョン

言語

  • C++17

処理系

参照