Skip to content

Commit 7313384

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 9c70211 commit 7313384

File tree

3 files changed

+75
-34
lines changed

3 files changed

+75
-34
lines changed

reference/execution/execution.html

Lines changed: 33 additions & 2 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-10-11T14:55:28">
192-
2025年10月11日 14時55分28秒
191+
<span itemprop="datePublished" content="2025-10-14T13:10:59">
192+
2025年10月14日 13時10分59秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -774,6 +774,36 @@ <h3>コルーチンユーティリティ</h3>
774774
<td><a href="../../lang/cpp20/coroutines.html">Promise型</a>の基底クラス (class template)</td>
775775
<td>C++26</td>
776776
</tr>
777+
<tr>
778+
<td><code><span href="https://cpprefjp.github.io/reference/execution/execution/affine_on.md.nolink">execution::affine_on</span></code></td>
779+
<td>(customization point object)</td>
780+
<td>C++26</td>
781+
</tr>
782+
<tr>
783+
<td><code><span href="https://cpprefjp.github.io/reference/execution/execution/inline_scheduler.md.nolink">execution::inline_scheduler</span></code></td>
784+
<td>インラインScheduler (class)</td>
785+
<td>C++26</td>
786+
</tr>
787+
<tr>
788+
<td><code><span href="https://cpprefjp.github.io/reference/execution/execution/task_scheduler.md.nolink">execution::task_scheduler</span></code></td>
789+
<td>型消去タスクScheduler (class)</td>
790+
<td>C++26</td>
791+
</tr>
792+
<tr>
793+
<td><code><span href="https://cpprefjp.github.io/reference/execution/execution/with_error.md.nolink">execution::with_error</span></code></td>
794+
<td>コルーチンからのエラー完了 (class template)</td>
795+
<td>C++26</td>
796+
</tr>
797+
<tr>
798+
<td><code><span href="https://cpprefjp.github.io/reference/execution/execution/change_coroutine_scheduler.md.nolink">execution::change_coroutine_scheduler</span></code></td>
799+
<td>コルーチンのScheduler変更 (class template)</td>
800+
<td>C++26</td>
801+
</tr>
802+
<tr>
803+
<td><code><span href="https://cpprefjp.github.io/reference/execution/execution/task.md.nolink">execution::task</span></code></td>
804+
<td>非同期タスクコルーチン<a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>型 (class template)</td>
805+
<td>C++26</td>
806+
</tr>
777807
</tbody>
778808
</table>
779809
<h3>実行スコープユーティリティ</h3>
@@ -844,6 +874,7 @@ <h2>参照</h2>
844874
<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>
845875
<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>
846876
<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>
877+
<li><a href="https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3552r3.html" target="_blank">P3552R3 Add a Coroutine Task Type</a></li>
847878
<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>
848879
<li><a href="https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3570r2.html" target="_blank">P3570R2 optional variants in sender/receiver</a></li>
849880
<li><a href="https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3682r0.pdf" target="_blank">P3682R0 Remove <code>std::execution::split</code></a></li>

rss.xml

Lines changed: 41 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,49 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2025-10-14T12:55:01.644027</updated>
6-
<id>c740e93c-7a05-49c1-bed6-296b2e82eed5</id>
5+
<updated>2025-10-14T13:17:14.635831</updated>
6+
<id>1b06d185-31c6-4e9e-bfcd-b383b1f0f2ec</id>
77

88

9+
<entry>
10+
<title>execution -- execution: P3552R3 エンティティ列挙のみ (#1521)</title>
11+
<link href="https://cpprefjp.github.io/reference/execution/execution.html"/>
12+
<id>85387aabaabf4946531c32e13023688627219473:reference/execution/execution.md</id>
13+
<updated>2025-10-14T22:10:59+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/execution/execution.md b/reference/execution/execution.md
16+
index 4c1346b44..b6af20ac8 100644
17+
--- a/reference/execution/execution.md
18+
+++ b/reference/execution/execution.md
19+
@@ -160,6 +160,12 @@ Senderコンシューマは名前空間 `std::this_thread` および名前空間
20+
|------|------|----------------|
21+
| [`execution::as_awaitable`](execution/as_awaitable.md) | Senderを[Awaitable型](/lang/cpp20/coroutines.md)へ変換 (customization point object) | C++26 |
22+
| [`execution::with_awaitable_senders`](execution/with_awaitable_senders.md) | [Promise型](/lang/cpp20/coroutines.md)の基底クラス (class template) | C++26 |
23+
+| [`execution::affine_on`](execution/affine_on.md.nolink) | (customization point object) | C++26 |
24+
+| [`execution::inline_scheduler`](execution/inline_scheduler.md.nolink) | インラインScheduler (class) | C++26 |
25+
+| [`execution::task_scheduler`](execution/task_scheduler.md.nolink) | 型消去タスクScheduler (class) | C++26 |
26+
+| [`execution::with_error`](execution/with_error.md.nolink) | コルーチンからのエラー完了 (class template) | C++26 |
27+
+| [`execution::change_coroutine_scheduler`](execution/change_coroutine_scheduler.md.nolink) | コルーチンのScheduler変更 (class template) | C++26 |
28+
+| [`execution::task`](execution/task.md.nolink) | 非同期タスクコルーチン戻り値型 (class template) | C++26 |
29+
30+
### 実行スコープユーティリティ
31+
32+
@@ -190,6 +196,7 @@ Senderコンシューマは名前空間 `std::this_thread` および名前空間
33+
- [P3149R11 `async_scope` - Creating scopes for non-sequential concurrency](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3149r11.html)
34+
- [P3284R4 `write_env` and `unstoppable` Sender Adaptors](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3284r4.html)
35+
- [P3481R5 `std::execution::bulk()` issues](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3481r5.html)
36+
+- [P3552R3 Add a Coroutine Task Type](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3552r3.html)
37+
- [P3557R3 High-Quality Sender Diagnostics with Constexpr Exceptions](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3557r3.html)
38+
- [P3570R2 optional variants in sender/receiver](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3570r2.html)
39+
- [P3682R0 Remove `std::execution::split`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3682r0.pdf)
40+
&lt;/code&gt;&lt;/pre&gt;</summary>
41+
42+
<author>
43+
<name>yoh</name>
44+
<email>kawasaki.liamg@gmail.com</email>
45+
</author>
46+
</entry>
47+
948
<entry>
1049
<title>可変長データを扱うクラスの効率的なdelete [P0722R3] -- 可変長データを扱うクラスの効率的なdelete : コード例を修正</title>
1150
<link href="https://cpprefjp.github.io/lang/cpp20/efficient_sized_delete_for_variable_sized_classes.html"/>
@@ -2785,33 +2824,4 @@ index 70debad4d..13d6dd089 100644
27852824
</author>
27862825
</entry>
27872826

2788-
<entry>
2789-
<title>spawn_future -- execution/spawn_future: 微調整</title>
2790-
<link href="https://cpprefjp.github.io/reference/execution/execution/spawn_future.html"/>
2791-
<id>d528d34d681aa3b5174facb7481553e753f2aa6d:reference/execution/execution/spawn_future.md</id>
2792-
<updated>2025-10-13T17:44:55+09:00</updated>
2793-
2794-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/execution/execution/spawn_future.md b/reference/execution/execution/spawn_future.md
2795-
index 43d4e9c51..c11c232dd 100644
2796-
--- a/reference/execution/execution/spawn_future.md
2797-
+++ b/reference/execution/execution/spawn_future.md
2798-
@@ -199,7 +199,10 @@ namespace std::execution {
2799-
};
2800-
}
2801-
```
2802-
+* scope_token[link /reference/stop_token/stop_token.md]
2803-
+* sender[link sender.md]
2804-
* completion_signatures_of_t[link completion_signatures_of_t.md]
2805-
+* receiver[link receiver.md]
2806-
* connect_result_t[link connect_result_t.md]
2807-
* connect[link connect.md]
2808-
* write_env[link write_env.md]
2809-
&lt;/code&gt;&lt;/pre&gt;</summary>
2810-
2811-
<author>
2812-
<name>yoh</name>
2813-
<email>kawasaki.liamg@gmail.com</email>
2814-
</author>
2815-
</entry>
2816-
28172827
</feed>

sitemap.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16292,7 +16292,7 @@
1629216292

1629316293
<url>
1629416294
<loc>https://cpprefjp.github.io/reference/execution/execution.html</loc>
16295-
<lastmod>2025-10-11T23:55:28+09:00</lastmod>
16295+
<lastmod>2025-10-14T22:10:59+09:00</lastmod>
1629616296
<changefreq>daily</changefreq>
1629716297
<priority>0.7</priority>
1629816298
</url>

0 commit comments

Comments
 (0)