3#ifndef TETL_COROUTINE_SUSPEND_NEVER_HPP
4#define TETL_COROUTINE_SUSPEND_NEVER_HPP
8#if defined(__cpp_coroutines)
14 [[nodiscard]]
constexpr auto await_ready() const noexcept ->
bool
22 constexpr auto await_resume() const noexcept ->
void { (void)
this; }
Definition adjacent_find.hpp:8
Definition coroutine_handle.hpp:15
Definition suspend_never.hpp:13
constexpr auto await_suspend(coroutine_handle<>) const noexcept -> void
Definition suspend_never.hpp:20
constexpr auto await_resume() const noexcept -> void
Definition suspend_never.hpp:22
constexpr auto await_ready() const noexcept -> bool
Definition suspend_never.hpp:14