Namensräume
Varianten
Aktionen

Standardbibliotheksheader <coroutine> (C++20)

Von cppreference.com
< cpp‎ | header
 
 
Header der Standardbibliothek
 

Dieser Header ist Teil der Sprachunterstützungsbibliothek.

Inhalt

Includes

(C++20)
Unterstützung für den Drei-Wege-Vergleichsoperator[edit]

Klassen

Trait-Typ zur Ermittlung von Koroutinen-Promise-Typen
(Klassenschablone) [bearbeiten]
wird verwendet, um auf eine pausierte oder ausgeführte Koroutine zu verweisen
(Klassenschablone) [bearbeiten]
Hash-Unterstützung für std::coroutine_handle
(Klassentemplate-Spezialisierung) [bearbeiten]
No-op Coroutines (Nulloperationen-Koroutinen)
Wird für Coroutinen ohne beobachtbare Effekte verwendet
(Klasse) [bearbeiten]
std::coroutine_handle<std::noop_coroutine_promise>, soll auf eine Nulloperationen-Koroutine verweisen
(typedef) [bearbeiten]
Trivial Awaitables (Triviale Awaitables)
Gibt an, dass ein await-Ausdruck niemals pausieren soll
(Klasse) [bearbeiten]
Gibt an, dass ein await-Ausdruck immer pausieren soll
(Klasse) [bearbeiten]

Funktionen

vergleicht zwei coroutine_handle-Objekte
(Funktion) [bearbeiten]
No-op Coroutines (Nulloperationen-Koroutinen)
Erzeugt ein Coroutine-Handle, das beim Wiederaufnehmen oder Zerstören keine beobachtbaren Effekte hat
(Funktion) [bearbeiten]

[bearbeiten] Synopsis

#include <compare>
 
namespace std {
  // coroutine traits
  template<class R, class... ArgTypes>
    struct coroutine_traits;
 
  // coroutine handle
  template<class Promise = void>
    struct coroutine_handle;
 
  // comparison operators
  constexpr bool operator==(coroutine_handle<> x, coroutine_handle<> y) noexcept;
  constexpr strong_ordering operator<=>(coroutine_handle<> x, 
                                        coroutine_handle<> y) noexcept;
 
  // hash support
  template<class T> struct hash;
  template<class P> struct hash<coroutine_handle<P>>;
 
  // no-op coroutines
  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;
 
  // trivial awaitables
  struct suspend_never;
  struct suspend_always;
}

[bearbeiten] Klassenschablone std::coroutine_handle

namespace std {
  template<>
  struct coroutine_handle<void>
  {
    // construct/reset
    constexpr coroutine_handle() noexcept;
    constexpr coroutine_handle(nullptr_t) noexcept;
    coroutine_handle& operator=(nullptr_t) noexcept;
 
    // export/import
    constexpr void* address() const noexcept;
    static constexpr coroutine_handle from_address(void* addr);
 
    // observers
    constexpr explicit operator bool() const noexcept;
    bool done() const;
 
    // resumption
    void operator()() const;
    void resume() const;
    void destroy() const;
 
  private:
    void* ptr;  // exposition only
  };
 
  template<class Promise>
  struct coroutine_handle
  {
    // construct/reset
    constexpr coroutine_handle() noexcept;
    constexpr coroutine_handle(nullptr_t) noexcept;
    static coroutine_handle from_promise(Promise&);
    coroutine_handle& operator=(nullptr_t) noexcept;
 
    // export/import
    constexpr void* address() const noexcept;
    static constexpr coroutine_handle from_address(void* addr);
 
    // conversion
    constexpr operator coroutine_handle<>() const noexcept;
 
    // observers
    constexpr explicit operator bool() const noexcept;
    bool done() const;
 
    // resumption
    void operator()() const;
    void resume() const;
    void destroy() const;
 
    // promise access
    Promise& promise() const;
 
  private:
    void* ptr;  // exposition only 
  };
}

[bearbeiten] Klasse std::noop_coroutine_promise

namespace std {
  struct noop_coroutine_promise {};
}

[bearbeiten] Klasse std::coroutine_handle<std::noop_coroutine_promise>

namespace std {
  template<>
  struct coroutine_handle<noop_coroutine_promise>
  {
    // conversion
    constexpr operator coroutine_handle<>() const noexcept;
 
    // observers
    constexpr explicit operator bool() const noexcept;
    constexpr bool done() const noexcept;
 
    // resumption
    constexpr void operator()() const noexcept;
    constexpr void resume() const noexcept;
    constexpr void destroy() const noexcept;
 
    // promise access
    noop_coroutine_promise& promise() const noexcept;
 
    // address
    constexpr void* address() const noexcept;
  private:
    coroutine_handle(/* unspecified */);
    void* ptr; // exposition only 
  };
}

[bearbeiten] Klasse 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 {}
  };
}

[bearbeiten] Klasse 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 {}
  };
}