Skip to content

Commit 4ad699b

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 79cf927 commit 4ad699b

File tree

9 files changed

+1714
-1430
lines changed

9 files changed

+1714
-1430
lines changed

reference/execution/execution.html

Lines changed: 46 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-08-27T16:34:45">
192-
2025年08月27日 16時34分45秒
191+
<span itemprop="datePublished" content="2025-09-01T16:37:59">
192+
2025年09月01日 16時37分59秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -677,6 +677,16 @@ <h3>Senderアダプタ</h3>
677677
<td>入力Senderの停止完了をエラー完了に変換 (customization point object)</td>
678678
<td>C++26</td>
679679
</tr>
680+
<tr>
681+
<td><code><span href="https://cpprefjp.github.io/reference/execution/execution/associate.md.nolink">execution::associate</span></code></td>
682+
<td>非同期スコープへの関連付け (customization point object)</td>
683+
<td>C++26</td>
684+
</tr>
685+
<tr>
686+
<td><code><span href="https://cpprefjp.github.io/reference/execution/execution/spawn_future.md.nolink">execution::spawn_future</span></code></td>
687+
<td><a class="cpprefjp-defined-word" data-desc="マルチスレッド実行時にリソースの所有権に基づいて実行順序を制御する操作">同期操作</a>を早期開始 (customization point object)</td>
688+
<td>C++26</td>
689+
</tr>
680690
</tbody>
681691
</table>
682692
<h3>Senderコンシューマ</h3>
@@ -699,9 +709,14 @@ <h3>Senderコンシューマ</h3>
699709
<td>現在のスレッド上でSender完了を待機 (customization point object)</td>
700710
<td>C++26</td>
701711
</tr>
712+
<tr>
713+
<td><code><span href="https://cpprefjp.github.io/reference/execution/execution/spawn.md.nolink">execution::spawn</span></code></td>
714+
<td><a class="cpprefjp-defined-word" data-desc="マルチスレッド実行時にリソースの所有権に基づいて実行順序を制御する操作">同期操作</a>を早期開始 (customization point object)</td>
715+
<td>C++26</td>
716+
</tr>
702717
</tbody>
703718
</table>
704-
<p>Senderコンシューマは名前空間 <code>std::this_thread</code> で定義される。</p>
719+
<p>Senderコンシューマは名前空間 <code>std::this_thread</code> および名前空間 <code>std::execution</code> で定義される。</p>
705720
<h3>Sender/Receiverユーティリティ</h3>
706721
<table border="1" bordercolor="#888" style="border-collapse:collapse">
707722
<thead>
@@ -761,6 +776,33 @@ <h3>コルーチンユーティリティ</h3>
761776
</tr>
762777
</tbody>
763778
</table>
779+
<h3>実行スコープユーティリティ</h3>
780+
<table border="1" bordercolor="#888" style="border-collapse:collapse">
781+
<thead>
782+
<tr>
783+
<th>名前</th>
784+
<th>説明</th>
785+
<th>対応バージョン</th>
786+
</tr>
787+
</thead>
788+
<tbody>
789+
<tr>
790+
<td><code><a href="execution/scope_token.html">execution::scope_token</a></code></td>
791+
<td>非同期スコープトークン (concept)</td>
792+
<td>C++26</td>
793+
</tr>
794+
<tr>
795+
<td><code><a href="execution/simple_counting_scope.html">execution::simple_counting_scope</a></code></td>
796+
<td>カウント式非同期スコープ (class)</td>
797+
<td>C++26</td>
798+
</tr>
799+
<tr>
800+
<td><code><a href="execution/counting_scope.html">execution::counting_scope</a></code></td>
801+
<td>停止要求可能なカウント式非同期スコープ (class)</td>
802+
<td>C++26</td>
803+
</tr>
804+
</tbody>
805+
</table>
764806
<h3>並列Scheduler</h3>
765807
<table border="1" bordercolor="#888" style="border-collapse:collapse">
766808
<thead>
@@ -799,6 +841,7 @@ <h2>参照</h2>
799841
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0024r2.html" target="_blank">P0024R2 The Parallelism TS Should be Standardized</a></li>
800842
<li><a href="https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html" target="_blank">P2300R10 <code>std::execution</code></a></li>
801843
<li><a href="https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p2079r10.html" target="_blank">P2079R10 Parallel scheduler</a></li>
844+
<li><a href="https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3149r11.html" target="_blank">P3149R11 <code>async_scope</code> - Creating scopes for non-sequential concurrency</a></li>
802845
<li><a href="https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3284r4.html" target="_blank">P3284R4 <code>write_env</code> and <code>unstoppable</code> Sender Adaptors</a></li>
803846
<li><a href="https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3481r5.html" target="_blank">P3481R5 <code>std::execution::bulk()</code> issues</a></li>
804847
<li><a href="https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3557r3.html" target="_blank">P3557R3 High-Quality Sender Diagnostics with Constexpr Exceptions</a></li>

0 commit comments

Comments
 (0)