이름공간
변수

코루틴 지원 (C++20)

cppreference.com
< cpp
 
 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations

틀:nv ph

(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
Elementary string conversions
(C++17)
(C++17)
Stacktrace
 

코루틴 지원 라이브러리에는 코루틴 컴파일/실행타임 지원을 제공하기 위한 몇 가지 타입을 정의하고 있습니다..

코루틴 traits

<coroutine> 헤더에 정의됨.
trait type for discovering coroutine promise types
(class template) [edit]

코루틴 핸들

<coroutine> 헤더에 정의됨.
대기 중이거나 실행 중인 코루틴을 참조하기 위해 사용합니다
(class template) [edit]

No-op 코루틴

<coroutine> 헤더에 정의됨.
creates a coroutine handle that has no observable effects when resumed or destroyed
(function) [edit]
used for coroutines with no observable effects
(class) [edit]
std::coroutine_handle<std::noop_coroutine_promise>, intended to refer to a no-op coroutine
(typedef) [edit]

Trivial awaitables

<coroutine> 헤더에 정의됨.
indicates that an await-expression should never suspend
(class) [edit]
indicates that an await-expression should always suspend
(class) [edit]