std::suspend_never

Header: <coroutine>

suspend_never is an empty class which can be used to indicate that an await expression never suspends and does not produce a value.

# Declarations

struct suspend_never;

(since C++20)

# Example

This section is incompleteReason: no example

# See also