-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrss.xml
1641 lines (1484 loc) · 65.6 KB
/
rss.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>cpprefjp - C++日本語リファレンス</title>
<link href="https://cpprefjp.github.io" />
<updated>2025-05-01T08:04:22.384114</updated>
<id>cec1e334-f98a-478d-863f-d5b3bd99ae37</id>
<entry>
<title>execution -- execution: sync_wait(_with_variant) (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution.html"/>
<id>2a210a5f43b9423bd5ed8e8e7f415953d99fd29d:reference/execution/execution.md</id>
<updated>2025-05-01T16:59:53+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution.md b/reference/execution/execution.md
index 5501c1ee1..18549d320 100644
--- a/reference/execution/execution.md
+++ b/reference/execution/execution.md
@@ -133,8 +133,8 @@ namespace std::execution {
| 名前 | 説明 | 対応バージョン |
|------|------|----------------|
-| [`this_thread::sync_wait`](this_thread/sync_wait.md.nolink) | 現在のスレッド上でSender完了を待機 (customization point object) | C++26 |
-| [`this_thread::sync_wait_with_variant`](this_thread/sync_wait_with_variant.md.nolink) | 現在のスレッド上でSender完了を待機 (customization point object) | C++26 |
+| [`this_thread::sync_wait`](this_thread/sync_wait.md) | 現在のスレッド上でSender完了を待機 (customization point object) | C++26 |
+| [`this_thread::sync_wait_with_variant`](this_thread/sync_wait_with_variant.md) | 現在のスレッド上でSender完了を待機 (customization point object) | C++26 |
Senderコンシューマは名前空間 `std::this_thread` で定義される。
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>completion-domain -- execution: sync_wait(_with_variant) (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/completion-domain.html"/>
<id>2a210a5f43b9423bd5ed8e8e7f415953d99fd29d:reference/execution/execution/completion-domain.md</id>
<updated>2025-05-01T16:59:53+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/completion-domain.md b/reference/execution/execution/completion-domain.md
index 3d4aade36..2d83422ca 100644
--- a/reference/execution/execution/completion-domain.md
+++ b/reference/execution/execution/completion-domain.md
@@ -32,7 +32,7 @@ constexpr auto completion-domain(const Sndr&amp; sndr) noexcept;
## 関連項目
-- [`get-domain-early`](get-domain-early.md.nolink)
+- [`get-domain-early`](get-domain-early.md)
- [`get-domain-late`](get-domain-late.md)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>get-domain-early -- execution: sync_wait(_with_variant) (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/get-domain-early.html"/>
<id>2a210a5f43b9423bd5ed8e8e7f415953d99fd29d:reference/execution/execution/get-domain-early.md</id>
<updated>2025-05-01T16:59:53+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/get-domain-early.md b/reference/execution/execution/get-domain-early.md
new file mode 100644
index 000000000..cb2841199
--- /dev/null
+++ b/reference/execution/execution/get-domain-early.md
@@ -0,0 +1,46 @@
+# get-domain-early
+* execution[meta header]
+* function template[meta id-type]
+* std::execution[meta namespace]
+* cpp26[meta cpp]
+
+```cpp
+template&lt;class Sndr&gt;
+constexpr auto get-domain-early(const Sndr&amp; sndr) noexcept;
+```
+
+## 概要
+[Sender](sender.md)アルゴリズム構築時のカスタマイゼーションポイントとして、[実行ドメイン](default_domain.md)を取得する説明専用の関数テンプレート。
+
+下記の優先順で実行ドメインを検索し、最初に妥当となる型を採用する。
+
+- Senderの[属性](../queryable.md)の実行ドメイン
+- Senderの[完了Scheduler](get_completion_scheduler.md)の実行ドメイン
+- [デフォルト実行ドメイン](default_domain.md)
+
+
+## 効果
+説明用の型`Domain`を下記リストのうち最初に妥当となる式の型と定義したとき、`return Doamin();`と等価。
+
+- [`get_domain`](get_domain.md)`(`[`get_env`](get_env.md)`(sndr))`
+- [`completion-domain`](completion-domain.md)`(sndr)`
+- [`default_domain()`](default_domain.md)
+
+
+## 例外
+投げない
+
+
+## バージョン
+### 言語
+- C++26
+
+
+## 関連項目
+- [`this_thread::sync_wait`](../this_thread/sync_wait.md)
+- [`this_thread::sync_wait_with_variant`](../this_thread/sync_wait_with_variant.md)
+
+
+## 参照
+- [P2999R3 Sender Algorithm Customization](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2023/p2999r3.html)
+- [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>get-domain-late -- execution: sync_wait(_with_variant) (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/get-domain-late.html"/>
<id>2a210a5f43b9423bd5ed8e8e7f415953d99fd29d:reference/execution/execution/get-domain-late.md</id>
<updated>2025-05-01T16:59:53+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/get-domain-late.md b/reference/execution/execution/get-domain-late.md
index 19daa05a9..359031a6b 100644
--- a/reference/execution/execution/get-domain-late.md
+++ b/reference/execution/execution/get-domain-late.md
@@ -15,11 +15,11 @@ constexpr auto get-domain-late(const Sndr&amp; sndr, const Env&amp; env) noexcept;
下記の優先順で実行ドメインを検索し、最初に妥当となる型を採用する。
(Senderアルゴリズム[`continue_on`](continue_on.md.nolink)のみ引数に指定した[Scheduler](scheduler.md)から取得。)
-- Senderの[属性](../queryable.md)
-- Senderの[完了Scheduler](get_completion_scheduler.md)
-- Receiverの[環境](../queryable.md)
-- Receiver環境の[Scheduler](scheduler.md)
-- [`default_domain`](default_domain.md)
+- Senderの[属性](../queryable.md)の実行ドメイン
+- Senderの[完了Scheduler](get_completion_scheduler.md)の実行ドメイン
+- Receiverの[環境](../queryable.md)の実行ドメイン
+- Receiver環境の[Scheduler](scheduler.md)の実行ドメイン
+- [デフォルト実行ドメイン](default_domain.md)
## 効果
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>this_thread -- execution: sync_wait(_with_variant) (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/this_thread.html"/>
<id>2a210a5f43b9423bd5ed8e8e7f415953d99fd29d:reference/execution/this_thread.md</id>
<updated>2025-05-01T16:59:53+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/this_thread.md b/reference/execution/this_thread.md
new file mode 100644
index 000000000..dfa4cee96
--- /dev/null
+++ b/reference/execution/this_thread.md
@@ -0,0 +1,23 @@
+# this_thread
+* execution[meta header]
+* std[meta namespace]
+* namespace[meta id-type]
+* cpp26[meta cpp]
+
+ヘッダ [`&lt;execution&gt;`](../execution.md) の名前空間 `std::this_thread` では、実行制御ライブラリの一部エンティティを定義する。
+
+```cpp
+namespace std::this_thread {
+ …
+}
+```
+
+実行制御ライブラリ全体は名前空間 [`std::execution`](../execution/execution.md) ページを参照のこと。
+
+
+## バージョン
+### 言語
+- C++26
+
+## 参照
+- [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>sync-wait-env -- execution: sync_wait(_with_variant) (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/this_thread/sync-wait-env.html"/>
<id>2a210a5f43b9423bd5ed8e8e7f415953d99fd29d:reference/execution/this_thread/sync-wait-env.md</id>
<updated>2025-05-01T16:59:53+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/this_thread/sync-wait-env.md b/reference/execution/this_thread/sync-wait-env.md
new file mode 100644
index 000000000..2d6ff1277
--- /dev/null
+++ b/reference/execution/this_thread/sync-wait-env.md
@@ -0,0 +1,45 @@
+# sync-wait-env
+* execution[meta header]
+* class template[meta id-type]
+* std::this_thread[meta namespace]
+* cpp26[meta cpp]
+
+```cpp
+namespace std::this_thread {
+ struct sync-wait-env {
+ execution::run_loop* loop; // exposition only
+
+ auto query(execution::get_scheduler_t) const noexcept {
+ return loop-&gt;get_scheduler();
+ }
+
+ auto query(execution::get_delegation_scheduler_t) const noexcept {
+ return loop-&gt;get_scheduler();
+ }
+ };
+}
+```
+* execution::run_loop[link ../execution/run_loop.md]
+* execution::get_scheduler_t[link ../execution/get_scheduler.md]
+* execution::get_delegation_scheduler_t[link ../execution/get_delegation_scheduler.md]
+* get_scheduler()[link ../execution/run_loop/get_scheduler.md]
+
+## 概要
+`sync-wait-env`は、実行制御ライブラリの仕様定義で用いられる説明専用のクラステンプレートである。
+
+Senderコンシューマ[`sync_wait`](sync_wait.md)、[`sync_wait_with_variant`](sync_wait_with_variant.md)動作において[Receiver](../execution/receiver.md)の[環境](../queryable.md)として利用される。
+
+
+## バージョン
+### 言語
+- C++26
+
+
+## 関連項目
+- [`this_thread::sync_wait`](sync_wait.md)
+- [`this_thread::sync_wait_with_variant`](sync_wait_with_variant.md)
+- [`execution::run_loop`](../execution/run_loop.md)
+
+
+## 参照
+- [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>sync-wait-receiver -- execution: sync_wait(_with_variant) (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/this_thread/sync-wait-receiver.html"/>
<id>2a210a5f43b9423bd5ed8e8e7f415953d99fd29d:reference/execution/this_thread/sync-wait-receiver.md</id>
<updated>2025-05-01T16:59:53+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/this_thread/sync-wait-receiver.md b/reference/execution/this_thread/sync-wait-receiver.md
new file mode 100644
index 000000000..f3823750a
--- /dev/null
+++ b/reference/execution/this_thread/sync-wait-receiver.md
@@ -0,0 +1,105 @@
+# sync-wait-receiver
+* execution[meta header]
+* class template[meta id-type]
+* std::this_thread[meta namespace]
+* cpp26[meta cpp]
+
+```cpp
+namespace std::this_thread {
+ template&lt;class Sndr&gt;
+ struct sync-wait-receiver { // exposition only
+ using receiver_concept = execution::receiver_t;
+ sync-wait-state&lt;Sndr&gt;* state; // exposition only
+
+ template&lt;class... Args&gt;
+ void set_value(Args&amp;&amp;... args) &amp;&amp; noexcept;
+
+ template&lt;class Error&gt;
+ void set_error(Error&amp;&amp; err) &amp;&amp; noexcept;
+
+ void set_stopped() &amp;&amp; noexcept;
+
+ sync-wait-env get_env() const noexcept { return {&amp;state-&gt;loop}; }
+ };
+
+ template&lt;class Sndr&gt;
+ struct sync-wait-state { // exposition only
+ execution::run_loop loop; // exposition only
+ exception_ptr error; // exposition only
+ sync-wait-result-type&lt;Sndr&gt; result; // exposition only
+ };
+}
+```
+* execution::receiver_t[link ../execution/receiver.md]
+* execution::run_loop[link ../execution/run_loop.md]
+* exception_ptr[link /reference/exception/exception_ptr.md]
+* sync-wait-result-type[link sync_wait.md]
+
+## 概要
+`sync-wait-receiver`および`sync-wait-state`は、実行制御ライブラリの仕様定義で用いられる説明専用のクラステンプレートである。
+
+Senderコンシューマ[`sync_wait`](sync_wait.md)動作において[Sender](../execution/sender.md)と[接続(connect)](../execution/connect.md)する[Receiver](../execution/receiver.md)、同Receiverの内部状態として利用される。
+
+
+### メンバ関数 `set_value`
+```cpp
+template&lt;class... Args&gt;
+void set_value(Args&amp;&amp;... args) &amp;&amp; noexcept;
+```
+
+効果 : 下記と等価
+
+```cpp
+try {
+ state-&gt;result.emplace(std::forward&lt;Args&gt;(args)...);
+} catch (...) {
+ state-&gt;error = current_exception();
+}
+state-&gt;loop.finish();
+```
+* emplace[link /reference/optional/optional/emplace.md]
+* current_exception()[link /reference/exception/current_exception.md]
+* finish()[link ../execution/run_loop/finish.md]
+
+
+### メンバ関数 `set_error`
+```cpp
+template&lt;class Error&gt;
+void set_error(Error&amp;&amp; err) &amp;&amp; noexcept
+```
+
+説明用の式`err`に対して`decltype((err))`を型`Err`としたとき、式`AS-EXCEPT-PTR(err)`を下記の通り定義する。
+
+- [`decay_t`](/reference/type_traits/decay.md)`&lt;Err&gt;`が[`exception_ptr`](/reference/exception/exception_ptr.md)型と等しければ、`err`となる。このとき、事前条件として`!err == false`を満たすこと。
+- そうではなく、[`decay_t`](/reference/type_traits/decay.md)`&lt;Err&gt;`が[`error_code`](/reference/system_error/error_code.md)型と等しければ、[`make_exception_ptr`](/reference/exception/make_exception_ptr.md)`(`[`system_error`](/reference/system_error/system_error.md)`(err))`となる。
+- そうでなければ、[`make_exception_ptr`](/reference/exception/make_exception_ptr.md)`(err)`となる。
+
+効果 : 下記と等価
+
+```cpp
+state-&gt;error = AS-EXCEPT-PTR(std::forward&lt;Error&gt;(err));
+state-&gt;loop.finish();
+```
+* finish()[link ../execution/run_loop/finish.md]
+
+
+### メンバ関数 `set_stopped`
+```cpp
+void set_stopped() &amp;&amp; noexcept;
+```
+
+効果 : `state-&gt;loop.`[`finish()`](../execution/run_loop/finish.md)と等価。
+
+
+## バージョン
+### 言語
+- C++26
+
+
+## 関連項目
+- [`this_thread::sync_wait`](sync_wait.md)
+- [`execution::run_loop`](../execution/run_loop.md)
+
+
+## 参照
+- [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>sync_wait -- execution: sync_wait(_with_variant) (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/this_thread/sync_wait.html"/>
<id>2a210a5f43b9423bd5ed8e8e7f415953d99fd29d:reference/execution/this_thread/sync_wait.md</id>
<updated>2025-05-01T16:59:53+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/this_thread/sync_wait.md b/reference/execution/this_thread/sync_wait.md
new file mode 100644
index 000000000..b54097da9
--- /dev/null
+++ b/reference/execution/this_thread/sync_wait.md
@@ -0,0 +1,144 @@
+# sync_wait
+* execution[meta header]
+* cpo[meta id-type]
+* std::this_thread[meta namespace]
+* cpp26[meta cpp]
+
+```cpp
+namespace std::this_thread {
+ struct sync_wait_t { unspecified };
+ inline constexpr sync_wait_t sync_wait{};
+}
+```
+* unspecified[italic]
+
+## 概要
+`sync_wait`は、[Sender](../execution/sender.md)が完了するまで現在のスレッドをブロックし、非同期操作の結果を取得するSenderコンシューマである。
+
+`sync_wait`は入力Senderが[値完了シグネチャ](../execution/set_value.md)をただ1種類だけ持つことを要求する。
+
+
+## 効果
+説明用の`sndr`を`decltype((sndr))`が`Sndr`型となる式とする。
+
+[`sender_in`](../execution/sender_in.md)`&lt;Sndr,` [`sync-wait-env`](sync-wait-env.md)`&gt; == false`のとき、呼び出し式`this_thread::sync_wait(sndr)`は不適格となる。
+
+そうでなければ、呼び出し式`this_thread::sync_wait(sndr)`は`sndr`が1回だけ評価されることを除いて、下記と等価。
+
+```cpp
+apply_sender(get-domain-early(sndr), sync_wait, sndr)
+```
+* apply_sender[link ../execution/apply_sender.md]
+* get-domain-early[link ../execution/get-domain-early.md]
+
+- 型`sync-wait-result-type&lt;Sndr&gt;`が適格であること。
+- 上記の`apply_sender`式を`e`としたとき、[`same_as`](/reference/concepts/same_as.md)`&lt;decltype(e), sync-wait-result-type&lt;Sndr&gt;&gt; == true`であること。
+
+
+### 戻り値型
+`sync_wait`の戻り値型となる、説明専用のエイリアステンプレート`sync-wait-result-type`を下記の通り定義する。
+
+```cpp
+namespace std::this_thread {
+ template&lt;execution::sender_in&lt;sync-wait-env&gt; Sndr&gt;
+ using sync-wait-result-type =
+ optional&lt;execution::value_types_of_t&lt;Sndr, sync-wait-env,
+ decayed-tuple, type_identity_t&gt;&gt;;
+}
+```
+* execution::sender_in[link ../execution/sender_in.md]
+* sync-wait-env[link sync-wait-env.md]
+* execution::value_types_of_t[link ../execution/value_types_of_t.md]
+* optional[link /reference/optional/optional.md]
+* decayed-tuple[link decayed-tuple.md.nolink]
+* type_identity_t[link /reference/type_traits/type_identity.md]
+
+
+### Senderタグ `sync_wait`
+説明用の`sndr`を`decltype((sndr))`が`Sndr`型となる式とする。
+
+[`sender_to`](../execution/sender_to.md)`&lt;Sndr,` [`sync-wait-receiver`](sync-wait-receiver.md)`&lt;Sndr&gt;&gt; == false`のとき、式`sync_wait.apply_sender(sndr)`は不適格となる。
+
+そうでなければ、式`sync_wait.apply_sender(sndr)`は下記と等価。
+
+```cpp
+sync-wait-state&lt;Sndr&gt; state;
+auto op = connect(sndr, sync-wait-receiver&lt;Sndr&gt;{&amp;state});
+start(op);
+
+state.loop.run();
+if (state.error) {
+ rethrow_exception(std::move(state.error));
+}
+return std::move(state.result);
+```
+* sync-wait-state[link sync-wait-receiver.md]
+* connect[link ../execution/connect.md]
+* sync-wait-receiver[link sync-wait-receiver.md]
+* start[link ../execution/start.md]
+* loop.run()[link ../execution/run_loop/run.md]
+* rethrow_exception[link /reference/exception/rethrow_exception.md]
+* std::move[link /reference/utility/move.md]
+
+
+## カスタマイゼーションポイント
+[Sender](../execution/sender.md)`sndr`に[関連付けられた実行ドメイン](../execution/get-domain-early.md)`dom`に対して、
+[`execution::apply_sender`](../execution/apply_sender.md)経由で`dom.apply_sender(sync_wait, sndr)`が呼ばれる。
+
+[デフォルト実行ドメイン](../execution/default_domain.md)では、`sync_wait.apply_sender(sndr)`が呼ばれる。
+
+下記を満たさない場合、呼び出し式`this_thread::sync_wait(sndr)`の動作は未定義となる。
+
+- 指定したSenderが完了するまで、前方進行保証委任(forward progress guarantee delegation)による現在のスレッドをブロックすること。
+- 指定したSenderの非同期操作の結果が返る場合
+ - 値完了の場合、結果データは[`optional`](/reference/optional/optional.md)オブジェクト内の[`tuple`](/reference/tuple/tuple.md)で返されること。
+ - エラー完了の場合、例外を送出すること。
+ - 停止完了の場合、空の[`optional`](/reference/optional/optional.md)オブジェクトが返されること。
+
+
+## 例
+```cpp
+#include &lt;print&gt;
+#include &lt;execution&gt;
+namespace ex = std::execution;
+
+int main()
+{
+ // 値(100, &#39;X&#39;)を送信するSender
+ ex::sender auto sndr = ex::just(100, &#39;X&#39;);
+ // メインスレッド上で完了待機
+ auto result = std::this_thread::sync_wait(sndr);
+ // 戻り値型optional&lt;tuple&lt;int,char&gt;&gt;から値を取り出す
+ auto [n, c] = result.value();
+ std::println(&#34;result=({}, {})&#34;, n, c);
+}
+```
+* std::this_thread::sync_wait[color ff0000]
+* ex::sender[link ../execution/sender.md]
+* ex::just[link ../execution/just.md.nolink]
+* value()[link /reference/optional/optional/value.md]
+
+### 出力
+```
+result=(100, X)
+```
+
+
+## バージョン
+### 言語
+- C++26
+
+### 処理系
+- [Clang](/implementation.md#clang): ??
+- [GCC](/implementation.md#gcc): ??
+- [ICC](/implementation.md#icc): ??
+- [Visual C++](/implementation.md#visual_cpp): ??
+
+
+## 関連項目
+- [`execution::sender`](../execution/sender.md)
+- [`this_thread::sync_wait_with_variant`](sync_wait_with_variant.md)
+
+
+## 参照
+- [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>sync_wait_with_variant -- execution: sync_wait(_with_variant) (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/this_thread/sync_wait_with_variant.html"/>
<id>2a210a5f43b9423bd5ed8e8e7f415953d99fd29d:reference/execution/this_thread/sync_wait_with_variant.md</id>
<updated>2025-05-01T16:59:53+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/this_thread/sync_wait_with_variant.md b/reference/execution/this_thread/sync_wait_with_variant.md
new file mode 100644
index 000000000..8dc96b1d2
--- /dev/null
+++ b/reference/execution/this_thread/sync_wait_with_variant.md
@@ -0,0 +1,135 @@
+# sync_wait_with_variant
+* execution[meta header]
+* cpo[meta id-type]
+* std::this_thread[meta namespace]
+* cpp26[meta cpp]
+
+```cpp
+namespace std::this_thread {
+ struct sync_wait_with_variant_t { unspecified };
+ inline constexpr sync_wait_with_variant_t sync_wait_with_variant{};
+}
+```
+* unspecified[italic]
+
+## 概要
+`sync_wait_with_variant`は、[Sender](../execution/sender.md)が完了するまで現在のスレッドをブロックし、非同期操作の結果を取得するSenderコンシューマである。
+
+`sync_wait_with_variant`は入力Senderが複数の[値完了シグネチャ](../execution/set_value.md)を持つケースに対応する。
+
+
+## 効果
+説明用の`sndr`を`decltype(`[`into_variant`](into_variant.md.nolink)`(sndr))`が`Sndr`型となる式とする。
+
+[`sender_in`](../execution/sender_in.md)`&lt;Sndr,` [`sync-wait-env`](sync-wait-env.md)`&gt; == false`のとき、呼び出し式`this_thread::sync_wait_with_variant(sndr)`は不適格となる。
+
+そうでなければ、呼び出し式`this_thread::sync_wait_with_variant(sndr)`は`sndr`が1回だけ評価されることを除いて、下記と等価。
+
+```cpp
+apply_sender(get-domain-early(sndr), sync_wait_with_variant, sndr)
+```
+* apply_sender[link ../execution/apply_sender.md]
+* get-domain-early[link ../execution/get-domain-early.md]
+
+- 型`sync-wait-with-variant-result-type&lt;Sndr&gt;`が適格であること。
+- 上記の`apply_sender`式を`e`としたとき、[`same_as`](/reference/concepts/same_as.md)`&lt;decltype(e), sync-wait-with-variant-result-type&lt;Sndr&gt;&gt; == true`であること。
+
+
+### 戻り値型
+`sync_wait_with_variant`の戻り値型となる、説明専用のエイリアステンプレート`sync-wait-with-variant-result-type`を下記の通り定義する。
+
+```cpp
+namespace std::this_thread {
+ template&lt;execution::sender_in&lt;sync-wait-env&gt; Sndr&gt;
+ using sync-wait-with-variant-result-type =
+ optional&lt;execution::value_types_of_t&lt;Sndr, sync-wait-env&gt;&gt;;
+```
+* execution::sender_in[link ../execution/sender_in.md]
+* sync-wait-env[link sync-wait-env.md]
+* execution::value_types_of_t[link ../execution/value_types_of_t.md]
+* optional[link /reference/optional/optional.md]
+
+
+### Senderタグ `sync_wait_with_variant`
+説明用の`sndr`を`decltype(`[`into_variant`](into_variant.md.nolink)`(sndr))`が`Sndr`型となる式とする。
+
+`callable&lt;`[`sync_wait_t`](sync_wait.md)`, Sndr&gt; == false`のとき、式`sync_wait_with_variant.apply_sender(sndr)`は不適格となる。
+
+そうでなければ、式`sync_wait_with_variant.apply_sender(sndr)`は下記と等価。
+
+```cpp
+using result_type = sync-wait-with-variant-result-type&lt;Sndr&gt;;
+if (auto opt_value = sync_wait(into_variant(sndr))) {
+ return result_type(std::move(get&lt;0&gt;(*opt_value)));
+}
+return result_type(nullopt);
+```
+* sync_wait[link sync_wait.md]
+* into_variant[link into_variant.md.nolink]
+* std::move[link /reference/utility/move.md]
+* get&lt;0&gt;[link /reference/tuple/tuple/get.md]
+* nullopt[link /reference/optional/nullopt_t.md]
+
+
+## カスタマイゼーションポイント
+[Sender](../execution/sender.md)`sndr`に[関連付けられた実行ドメイン](../execution/get-domain-early.md)`dom`に対して、
+[`execution::apply_sender`](../execution/apply_sender.md)経由で`dom.apply_sender(sync_wait_with_variant, sndr)`が呼ばれる。
+
+[デフォルト実行ドメイン](../execution/default_domain.md)では、`sync_wait_with_variant.apply_sender(sndr)`が呼ばれる。
+
+下記を満たさない場合、呼び出し式`this_thread::sync_wait_with_variant(sndr)`の動作は未定義となる。
+
+- 指定したSenderが完了するまで、前方進行保証委任(forward progress guarantee delegation)による現在のスレッドをブロックすること。
+- 指定したSenderの非同期操作の結果が返る場合
+ - 値完了の場合、結果データは[`optional`](/reference/optional/optional.md)オブジェクト内の[`tuple`](/reference/tuple/tuple.md)の[`variant`](/reference/variant/variant.md)で返されること。
+ - エラー完了の場合、例外を送出すること。
+ - 停止完了の場合、空の[`optional`](/reference/optional/optional.md)オブジェクトが返されること。
+
+
+## 例
+```cpp
+#include &lt;print&gt;
+#include &lt;execution&gt;
+namespace ex = std::execution;
+
+int main()
+{
+ // 値(100, &#39;X&#39;)を送信するSender
+ ex::sender auto sndr = ex::just(100, &#39;X&#39;);
+ // メインスレッド上で完了待機
+ auto result = std::this_thread::sync_wait_with_variant(sndr);
+ // 戻り値型optional&lt;variant&lt;tuple&lt;int,char&gt;&gt;&gt;からtupleを取り出す
+ auto tup = get&lt;0&gt;(result.value());
+ std::println(&#34;result={}&#34;, tup);
+}
+```
+* std::this_thread::sync_wait_with_variant[color ff0000]
+* ex::sender[link ../execution/sender.md]
+* ex::just[link ../execution/just.md.nolink]
+* get&lt;0&gt;[link /reference/variant/variant/get.md]
+* value()[link /reference/optional/optional/value.md]
+
+### 出力
+```
+result=(100, &#39;X&#39;)
+```
+
+
+## バージョン
+### 言語
+- C++26
+
+### 処理系
+- [Clang](/implementation.md#clang): ??
+- [GCC](/implementation.md#gcc): ??
+- [ICC](/implementation.md#icc): ??
+- [Visual C++](/implementation.md#visual_cpp): ??
+
+
+## 関連項目
+- [`execution::sender`](../execution/sender.md)
+- [`this_thread::sync_wait`](sync_wait.md)
+
+
+## 参照
+- [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>run_loop -- execution/run_loop: 微調整 (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/run_loop.html"/>
<id>e6b7e2cfbe40cd345f07d28f060da229a653766d:reference/execution/execution/run_loop.md</id>
<updated>2025-04-30T18:09:00+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/run_loop.md b/reference/execution/execution/run_loop.md
index 1d469bf4d..e87534f35 100644
--- a/reference/execution/execution/run_loop.md
+++ b/reference/execution/execution/run_loop.md
@@ -14,7 +14,7 @@ namespace std::execition {
`run_loop`は、実行制御ライブラリの作業を[スケジュール](schedule.md)可能な実行リソース(execution resource)である。
内部的にスレッドセーフなFIFO (first-in first-out) 作業キューを保持する。
-[`run`メンバ関数](run_loop/run.md)はキューから作業を取り出し、同関数を呼び出したスレッド上のループで実行する。
+[`run`メンバ関数](run_loop/run.md)はキューから作業を順次取り出し、同関数を呼び出すスレッド上で逐次実行する。
`run_loop`インスタンスの動作説明のため、下記の説明用メンバ変数を持つ。
@@ -32,7 +32,7 @@ namespace std::execition {
| [`run`](run_loop/run.md) | キュー上の作業を逐次実行 | C++26 |
| [`finish`](run_loop/finish.md) | 状態を終了中に変更 | C++26 |
-## 説明専用のメンバ型
+## メンバ型
| 名前 | 説明 | 対応バージョン |
|------|------|-------|
@@ -119,3 +119,4 @@ success
## 参照
- [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
+- [P3396R1 std::execution wording fixes](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p3396r1.html)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>finish -- execution/run_loop: 微調整 (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/run_loop/finish.html"/>
<id>e6b7e2cfbe40cd345f07d28f060da229a653766d:reference/execution/execution/run_loop/finish.md</id>
<updated>2025-04-30T18:09:00+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/run_loop/finish.md b/reference/execution/execution/run_loop/finish.md
index 45565054a..fe72b5e9a 100644
--- a/reference/execution/execution/run_loop/finish.md
+++ b/reference/execution/execution/run_loop/finish.md
@@ -63,3 +63,4 @@ int main()
## 参照
- [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
+- [P3396R1 std::execution wording fixes](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p3396r1.html)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>get_scheduler -- execution/run_loop: 微調整 (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/run_loop/get_scheduler.html"/>
<id>e6b7e2cfbe40cd345f07d28f060da229a653766d:reference/execution/execution/run_loop/get_scheduler.md</id>
<updated>2025-04-30T18:09:00+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/run_loop/get_scheduler.md b/reference/execution/execution/run_loop/get_scheduler.md
index 462704953..ba9707d1f 100644
--- a/reference/execution/execution/run_loop/get_scheduler.md
+++ b/reference/execution/execution/run_loop/get_scheduler.md
@@ -20,6 +20,8 @@ run-loop-scheduler get_scheduler();
## 例
```cpp example
+#include &lt;cassert&gt;
+#include &lt;concepts&gt;
#include &lt;execution&gt;
namespace ex = std::execution;
@@ -27,11 +29,34 @@ int main()
{
ex::run_loop loop;
ex::scheduler auto sch = loop.get_scheduler();
+
+ // スケジュールSenderを作成
+ ex::sender auto sndr = ex::schedule(sch);
+
+ // スケジュールSenderの完了シグネチャ集合を確認
+ auto sigs = ex::get_completion_signatures(sndr);
+ static_assert(std::same_as&lt;decltype(sigs),
+ ex::completion_signatures&lt;ex::set_value_t(),
+ ex::set_error_t(std::exception_ptr),
+ ex::set_stopped_t()&gt;&gt;);
+
+ // スケジュールSender属性の値完了スケジューラを確認
+ auto compl_sch = ex::get_completion_scheduler&lt;ex::set_value_t&gt;(ex::get_env(sndr));
+ assert(compl_sch == sch);
}
```
* get_scheduler()[color ff0000]
* ex::run_loop[link ../run_loop.md]
* ex::scheduler[link ../scheduler.md]
+* ex::sender[link ../sender.md]
+* ex::schedule[link ../schedule.md]
+* ex::get_completion_signatures[link ../get_completion_signatures.md]
+* ex::completion_signatures[link ../completion_signatures.md]
+* ex::set_value_t[link ../set_value.md]
+* ex::set_error_t[link ../set_error.md]
+* ex::set_stopped_t[link ../set_stopped.md]
+* ex::get_completion_scheduler[link ../get_completion_scheduler.md]
+* ex::get_env[link ../get_env.md]
### 出力
```
@@ -51,6 +76,7 @@ int main()
## 関連項目
- [`run-loop-scheduler`](run-loop-scheduler.md)
+- [`run-loop-sender`](run-loop-sender.md)
- [`execution::schedule`](../schedule.md)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>run-loop-opstate -- execution/run_loop: 微調整 (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/run_loop/run-loop-opstate.html"/>
<id>e6b7e2cfbe40cd345f07d28f060da229a653766d:reference/execution/execution/run_loop/run-loop-opstate.md</id>
<updated>2025-04-30T18:09:00+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/run_loop/run-loop-opstate.md b/reference/execution/execution/run_loop/run-loop-opstate.md
index 48d7ebd1c..fb631d051 100644
--- a/reference/execution/execution/run_loop/run-loop-opstate.md
+++ b/reference/execution/execution/run_loop/run-loop-opstate.md
@@ -67,6 +67,7 @@ struct run-loop-opstate-base { // exposition only
## 関連項目
- [`run`](run.md)
+- [`execution::connect`](../connect.md)
- [`execution::start`](../start.md)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>run-loop-sender -- execution/run_loop: 微調整 (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/run_loop/run-loop-sender.html"/>
<id>e6b7e2cfbe40cd345f07d28f060da229a653766d:reference/execution/execution/run_loop/run-loop-sender.md</id>
<updated>2025-04-30T18:09:00+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/run_loop/run-loop-sender.md b/reference/execution/execution/run_loop/run-loop-sender.md
index 24f642fed..65937e3ef 100644
--- a/reference/execution/execution/run_loop/run-loop-sender.md
+++ b/reference/execution/execution/run_loop/run-loop-sender.md
@@ -27,6 +27,7 @@ class run-loop-sender; // exposition only
## 関連項目
+- [`get_scheduler`](get_scheduler.md)
- [`run-loop-scheduler`](run-loop-scheduler.md)
- [`execution::sender`](../sender.md)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>run -- execution/run_loop: 微調整 (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/run_loop/run.html"/>
<id>e6b7e2cfbe40cd345f07d28f060da229a653766d:reference/execution/execution/run_loop/run.md</id>
<updated>2025-04-30T18:09:00+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/run_loop/run.md b/reference/execution/execution/run_loop/run.md
index 6519680ca..3c7970871 100644
--- a/reference/execution/execution/run_loop/run.md
+++ b/reference/execution/execution/run_loop/run.md
@@ -117,3 +117,4 @@ finished
## 参照
- [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
+- [P3396R1 std::execution wording fixes](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p3396r1.html)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>completion-domain -- execution: run_loop全メンバ (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/completion-domain.html"/>
<id>88bcec60be484f0fe088f6211913885253221050:reference/execution/execution/completion-domain.md</id>
<updated>2025-04-30T14:29:54+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/completion-domain.md b/reference/execution/execution/completion-domain.md
index 70eb1a6ac..3d4aade36 100644
--- a/reference/execution/execution/completion-domain.md
+++ b/reference/execution/execution/completion-domain.md
@@ -11,14 +11,14 @@ constexpr auto completion-domain(const Sndr&amp; sndr) noexcept;
* default_domain[link default_domain.md]
## 概要
-[Sender型](sender.md)`sndr`の[完了Scheduler](get_completion_scheduler.md)から[実行ドメイン](default_domain.md)を取得する説明専用の関数テンプレート。
+[Sender](sender.md)`sndr`の[完了Scheduler](get_completion_scheduler.md)から[実行ドメイン](default_domain.md)を取得する説明専用の関数テンプレート。
## 効果
説明用の型`COMPL-DOMAIN(T)`を式[`get_domain`](get_domain.md)`(`[`get_completion_scheduler`](get_completion_scheduler.md)`&lt;T&gt;(`[`get_env`](get_env.md)`(sndr)))`の型とする。
- 型`COMPL-DOMAIN(`[`set_value_t`](set_value.md)`)`、`COMPL-DOMAIN(`[`set_error_t`](set_error.md)`)`、`COMPL-DOMAIN(`[`set_stopped_t`](set_stopped.md)`)`の全てが不適格の場合、`completion-domain&lt;Default&gt;`は`Default`型のデフォルト構築されたprvalueとなる。
-- そうではなく、上記のうち不適格となる型を除いた型が[共通型](/reference/type_traits/common_type.md)を共有するならば、`completion-domain&lt;Default&gt;`はその共有型のデフォルト構築されたprvalueとなる。
+- そうではなく、上記のうち不適格となる型を除いた型が[共通型](/reference/type_traits/common_type.md)を共有するならば、`completion-domain&lt;Default&gt;`はその共通型のデフォルト構築されたprvalueとなる。
- そうでなければ、`completion-domain&lt;Default&gt;`は不適格となる。
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>run_loop -- execution: run_loop全メンバ (#1384)</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/run_loop.html"/>
<id>88bcec60be484f0fe088f6211913885253221050:reference/execution/execution/run_loop.md</id>
<updated>2025-04-30T14:29:54+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/run_loop.md b/reference/execution/execution/run_loop.md
index 4ed815e62..1d469bf4d 100644
--- a/reference/execution/execution/run_loop.md
+++ b/reference/execution/execution/run_loop.md
@@ -14,12 +14,12 @@ namespace std::execition {
`run_loop`は、実行制御ライブラリの作業を[スケジュール](schedule.md)可能な実行リソース(execution resource)である。
内部的にスレッドセーフなFIFO (first-in first-out) 作業キューを保持する。
-[`run`メンバ関数](run_loop/run.md.nolink)はキューから作業を取り出し、同関数を呼び出したスレッド上のループで実行する。
+[`run`メンバ関数](run_loop/run.md)はキューから作業を取り出し、同関数を呼び出したスレッド上のループで実行する。
`run_loop`インスタンスの動作説明のため、下記の説明用メンバ変数を持つ。
-- `count` : FIFOキューが保持する作業の個数
-- `state` : 開始(starting)/実行中(running)/完了中(finishing)/完了済み(finished) いずれかのインスタンス状態
+- `count` : キュー上に保持している作業の個数
+- `state` : [開始(starting)](run_loop/op_constructor.md)/[実行中(running)](run_loop/run.md)/[終了中(finishing)](run_loop/finish.md)/[終了済み(finished)](run_loop/run.md) いずれかの状態
## メンバ関数
@@ -29,20 +29,22 @@ namespace std::execition {
| [`(constructor)`](run_loop/op_constructor.md) | コンストラクタ | C++26 |
| [`(destructor)`](run_loop/op_destructor.md) | デストラクタ | C++26 |
| [`get_scheduler`](run_loop/get_scheduler.md) | Scheduler取得 | C++26 |
-| [`run`](run_loop/run.md.nolink) | ループ実行を開始 | C++26 |
-| [`finish`](run_loop/finish.md.nolink) | ループ実行を終了 | C++26 |
+| [`run`](run_loop/run.md) | キュー上の作業を逐次実行 | C++26 |
+| [`finish`](run_loop/finish.md) | 状態を終了中に変更 | C++26 |
## 説明専用のメンバ型
| 名前 | 説明 | 対応バージョン |
|------|------|-------|