• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

    最終更新日時(UTC):
    が更新

    履歴 編集

    function
    <coroutine>

    std::coroutine_handle::resume

    void operator()() const;
    void resume() const;
    

    概要

    中断状態にあるコルーチンの実行を再開する。

    事前条件

    *thisが中断状態のコルーチンを指し、かつ最終サスペンドポイントで中断状態にないこと。

    効果

    コルーチンの実行を再開する。

    備考

    std::threadstd::jthreadのインスタンス、もしくはメインスレッド以外からコルーチンを再開する場合、その振る舞いは処理系定義とされる。

    バージョン

    言語

    • C++20

    処理系

    関連項目