- 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
- Clang: ??
- GCC: 11.1 [mark verified]
- Visual C++: ??