constexpr void* address() const noexcept;
概要
コルーチンハンドルに対応するアドレス値を返す。
戻り値
コルーチンハンドルに対応するアドレス値。
例外
投げない
例
#include <cassert>
#include <coroutine>
int main()
{
std::coroutine_handle<> h;
assert(h.address() == nullptr);
}
9
#include <cassert>
#include <coroutine>
int main()
{
std::coroutine_handle<> h;
assert(h.address() == nullptr);
}
出力
バージョン
言語
- C++20
処理系
- Clang: ??
- GCC: 11.1 ✅
- Visual C++: ??