Skip to content

Latest commit

 

History

History
58 lines (46 loc) · 1.24 KB

stop_possible.md

File metadata and controls

58 lines (46 loc) · 1.24 KB

stop_possible

  • stop_token[meta header]
  • std[meta namespace]
  • stop_source[meta class]
  • function[meta id-type]
  • cpp20[meta cpp]
[[nodiscard]]
bool stop_possible() const noexcept; // (1) C++20
bool stop_possible() const noexcept; // (1) C++26

概要

停止要求を作成できるかどうかを返す。

戻り値

自身が停止状態を所有しているときはtrueを返す。それ以外の場合はfalseを返す。

例外

投げない。

#include <cassert>
#include <stop_token>

int main()
{
  std::stop_source ss1;
  std::stop_source ss2(std::nostopstate);

  assert(ss1.stop_possible() == true);
  assert(ss2.stop_possible() == false);
}
  • stop_possible()[color ff0000]
  • stop_source[link ../stop_source.md]
  • nostopstate[link ../nostopstate.md]

出力

バージョン

言語

  • C++20

処理系

参照