3#ifndef TETL_COROUTINE_SUSPEND_ALWAYS_HPP
4#define TETL_COROUTINE_SUSPEND_ALWAYS_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_always.hpp:13
constexpr auto await_suspend(coroutine_handle<>) const noexcept -> void
Definition suspend_always.hpp:20
constexpr auto await_resume() const noexcept -> void
Definition suspend_always.hpp:22
constexpr auto await_ready() const noexcept -> bool
Definition suspend_always.hpp:14