Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::coroutine_handle<Promise>::from_promise

      From cppreference.com
      <cpp‎ |coroutine‎ |coroutine handle
       
       
      Utilities library
       
      Coroutine support
      Coroutine traits
      Coroutine handle
      No-op coroutines
      Trivial awaitables
      Range generators
      (C++23)
       
       
      static coroutine_handle from_promise( Promise& p);
      (since C++20)

      Creates acoroutine_handle from the promise object of a coroutine. The createdcoroutine_handle refers the coroutine, andpromise() returns a reference top.

      The behavior is undefined ifp is not a reference to a promise object. This function is only provided for the primary template, i.e. specializationsstd::coroutine_handle<> andstd::coroutine_handle<std::noop_coroutine_promise> do not have this function.

      Contents

      [edit]Parameters

      p - promise object of a coroutine to refer

      [edit]Return value

      Acoroutine_handle referring the given coroutine.

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]See also

      constructs acoroutine_handle object
      (public member function)[edit]
      [static]
      imports a coroutine from a pointer
      (public static member function)[edit]
      creates a coroutine handle that has no observable effects when resumed or destroyed
      (function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/coroutine/coroutine_handle/from_promise&oldid=156819"

      [8]ページ先頭

      ©2009-2025 Movatter.jp