Skip to content

Latest commit

 

History

History
58 lines (43 loc) · 942 Bytes

File metadata and controls

58 lines (43 loc) · 942 Bytes

operator bool

  • coroutine[meta header]
  • std[meta namespace]
  • coroutine_handle[meta class]
  • function[meta id-type]
  • cpp20[meta cpp]
constexpr explicit operator bool() const noexcept;

概要

コルーチンハンドルが有効なコルーチンを指すかを確認する。

戻り値

address() != nullptr

例外

投げない

#include <coroutine>
#include <iostream>

int main()
{
  std::coroutine_handle<> h;
  if (h) {
    std::cout << "valid coroutine" << std::endl;
  } else {
    std::cout << "empty coroutine" << std::endl;
  }
}
  • if (h)[color ff0000]

出力

empty coroutine

バージョン

言語

  • C++20

処理系

関連項目