Namespaces
Variants

Standard library header <coroutine> (C++20)

From cppreference.net
Standard library headers

이 헤더는 언어 지원 라이브러리의 일부입니다.

목차

포함 파일

(C++20)
3방향 비교 연산자 지원

클래스

코루틴 프로미스 타입을 탐지하기 위한 특성 타입
(클래스 템플릿)
일시 중단되었거나 실행 중인 코루틴을 참조하는 데 사용됨
(클래스 템플릿)
std::coroutine_handle 에 대한 해시 지원
(클래스 템플릿 특수화)
No-op 코루틴
관찰 가능한 효과가 없는 코루틴에 사용됨
(class)
std:: coroutine_handle < std:: noop_coroutine_promise > , no-op 코루틴을 참조하기 위한 용도
(typedef)
Trivial Awaitables
await-expression이 절대 일시 중단되지 않아야 함을 나타냅니다
(클래스)
await-expression이 항상 일시 중단되어야 함을 나타냅니다
(클래스)

함수

두 개의 coroutine_handle 객체를 비교합니다
(함수)
No-op 코루틴
재개되거나 소멸될 때 관찰 가능한 효과가 없는 코루틴 핸들을 생성합니다
(함수)

시놉시스

#include <compare>
namespace std {
  // 코루틴 특성
  template<class R, class... ArgTypes>
    struct coroutine_traits;
  // 코루틴 핸들
  template<class Promise = void>
    struct coroutine_handle;
  // 비교 연산자
  constexpr bool operator==(coroutine_handle<> x, coroutine_handle<> y) noexcept;
  constexpr strong_ordering operator<=>(coroutine_handle<> x, 
                                        coroutine_handle<> y) noexcept;
  // 해시 지원
  template<class T> struct hash;
  template<class P> struct hash<coroutine_handle<P>>;
  // 무작업 코루틴
  struct noop_coroutine_promise;
  template<> struct coroutine_handle<noop_coroutine_promise>;
  using noop_coroutine_handle = coroutine_handle<noop_coroutine_promise>;
  noop_coroutine_handle noop_coroutine() noexcept;
  // 단순 대기 가능 객체
  struct suspend_never;
  struct suspend_always;
}

클래스 템플릿 std::coroutine_handle

namespace std {
  template<>
  struct coroutine_handle<void>
  {
    // 생성/재설정
    constexpr coroutine_handle() noexcept;
    constexpr coroutine_handle(nullptr_t) noexcept;
    coroutine_handle& operator=(nullptr_t) noexcept;
    // 내보내기/가져오기
    constexpr void* address() const noexcept;
    static constexpr coroutine_handle from_address(void* addr);
    // 관찰자
    constexpr explicit operator bool() const noexcept;
    bool done() const;
    // 재개
    void operator()() const;
    void resume() const;
    void destroy() const;
  private:
    void* ptr;  // 설명 전용
  };
  template<class Promise>
  struct coroutine_handle
  {
    // 생성/재설정
    constexpr coroutine_handle() noexcept;
    constexpr coroutine_handle(nullptr_t) noexcept;
    static coroutine_handle from_promise(Promise&);
    coroutine_handle& operator=(nullptr_t) noexcept;
    // 내보내기/가져오기
    constexpr void* address() const noexcept;
    static constexpr coroutine_handle from_address(void* addr);
    // 변환
    constexpr operator coroutine_handle<>() const noexcept;
    // 관찰자
    constexpr explicit operator bool() const noexcept;
    bool done() const;
    // 재개
    void operator()() const;
    void resume() const;
    void destroy() const;
    // promise 접근
    Promise& promise() const;
  private:
    void* ptr;  // 설명 전용
  };
}

클래스 std::noop_coroutine_promise

namespace std {
  struct noop_coroutine_promise {};
}

클래스 std:: coroutine_handle < std:: noop_coroutine_promise >

namespace std {
  template<>
  struct coroutine_handle<noop_coroutine_promise>
  {
    // 변환
    constexpr operator coroutine_handle<>() const noexcept;
    // 관찰자
    constexpr explicit operator bool() const noexcept;
    constexpr bool done() const noexcept;
    // 재개
    constexpr void operator()() const noexcept;
    constexpr void resume() const noexcept;
    constexpr void destroy() const noexcept;
    // promise 접근
    noop_coroutine_promise& promise() const noexcept;
    // 주소
    constexpr void* address() const noexcept;
  private:
    coroutine_handle(/* unspecified */);
    void* ptr; // 설명 전용
  };
}

클래스 std::suspend_never

namespace std {
  struct suspend_never {
    constexpr bool await_ready() const noexcept { return true; }
    constexpr void await_suspend(coroutine_handle<>) const noexcept {}
    constexpr void await_resume() const noexcept {}
  };
}

클래스 std::suspend_always

namespace std {
  struct suspend_always {
    constexpr bool await_ready() const noexcept { return false; }
    constexpr void await_suspend(coroutine_handle<>) const noexcept {}
    constexpr void await_resume() const noexcept {}
  };
}