-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrss.xml
More file actions
1325 lines (1153 loc) · 60.8 KB
/
rss.xml
File metadata and controls
1325 lines (1153 loc) · 60.8 KB
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>2026-04-25T00:13:24.715563</updated>
<id>6c799fe4-e78b-450f-a15a-197023422573</id>
<entry>
<title>文字列リテラルとワイド文字列リテラルの結合 -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/lang/cpp11/string_literal_concatenation.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:lang/cpp11/string_literal_concatenation.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/lang/cpp11/string_literal_concatenation.md b/lang/cpp11/string_literal_concatenation.md
index 6d76c3916..d220f213b 100644
--- a/lang/cpp11/string_literal_concatenation.md
+++ b/lang/cpp11/string_literal_concatenation.md
@@ -29,7 +29,7 @@ int main()
std::wcout &lt;&lt; s2 &lt;&lt; std::endl;
}
```
-* std::wcout[link /reference/iostream/cout.md]
+* std::wcout[link /reference/iostream/wcout.md]
### 出力
```
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>narrow -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/ios/basic_ios/narrow.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/ios/basic_ios/narrow.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ios/basic_ios/narrow.md b/reference/ios/basic_ios/narrow.md
index e13645a08..7da35a613 100644
--- a/reference/ios/basic_ios/narrow.md
+++ b/reference/ios/basic_ios/narrow.md
@@ -33,7 +33,7 @@ int main()
}
```
* narrow[color ff0000]
-* std::wcout[link ../../iostream/wcout.md.nolink]
+* std::wcout[link ../../iostream/wcout.md]
### 出力
```
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>tie -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/ios/basic_ios/tie.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/ios/basic_ios/tie.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ios/basic_ios/tie.md b/reference/ios/basic_ios/tie.md
index 84a466cad..e272aba94 100644
--- a/reference/ios/basic_ios/tie.md
+++ b/reference/ios/basic_ios/tie.md
@@ -39,9 +39,9 @@ basic_ostream&lt;CharT, Traits&gt;* tie(basic_ostream&lt;CharT, Traits&gt;* tiestr); // (
なお、この要件は「`tie` に設定した後でこのようになってはいけない」という意味であるものと思われる。(さもないと、設定したことによって無限ループが生じることを防げない)
- 標準入出力ストリームは、以下のような設定が行われている。
- [`cin`](../../iostream/cin.md)`.tie() == &amp;`[`cout`](../../iostream/cout.md)
- - [`wcin`](../../iostream/wcin.md.nolink)`.tie() == &amp;`[`wcout`](../../iostream/wcout.md.nolink)
+ - [`wcin`](../../iostream/wcin.md)`.tie() == &amp;`[`wcout`](../../iostream/wcout.md)
- [`cerr`](../../iostream/cerr.md)`.tie() == &amp;`[`cout`](../../iostream/cout.md)(C++11 から)
- - [`wcerr`](../../iostream/wcerr.md.nolink)`.tie() == &amp;`[`wcout`](../../iostream/wcout.md.nolink)(C++11 から)
+ - [`wcerr`](../../iostream/wcerr.md.nolink)`.tie() == &amp;`[`wcout`](../../iostream/wcout.md)(C++11 から)
## 例
@@ -97,15 +97,17 @@ new
### 言語
- C++98
-## 参照
+## 関連項目
- [`cin`](../../iostream/cin.md)
- [`cout`](../../iostream/cout.md)
- [`cerr`](../../iostream/cerr.md)
-- [`wcin`](../../iostream/wcin.md.nolink)
-- [`wcout`](../../iostream/wcout.md.nolink)
+- [`wcin`](../../iostream/wcin.md)
+- [`wcout`](../../iostream/wcout.md)
- [`wcerr`](../../iostream/wcerr.md.nolink)
- [`basic_istream`](../../istream/basic_istream.md)`::`[`sentry`](../../istream/basic_istream/sentry.md)`::`[`sentry`](../../istream/basic_istream/sentry/op_constructor.md)
- [`basic_ostream`](../../ostream/basic_ostream.md)`::`[`sentry`](../../ostream/basic_ostream/sentry.md)`::`[`sentry`](../../ostream/basic_ostream/sentry/op_constructor.md)
+
+## 参照
- [60. What is a formatted input function?](http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#60)
C++03 で [`basic_ostream`](../../ostream/basic_ostream.md)`::`[`flush`](../../ostream/basic_ostream/flush.md)`()` が非書式化出力ではないと明記された Defect Report
- [581. flush() not unformatted function](http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#581)
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>widen -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/ios/basic_ios/widen.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/ios/basic_ios/widen.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ios/basic_ios/widen.md b/reference/ios/basic_ios/widen.md
index a2d712f02..7960549ae 100644
--- a/reference/ios/basic_ios/widen.md
+++ b/reference/ios/basic_ios/widen.md
@@ -32,7 +32,7 @@ int main()
std::wcout &lt;&lt; c1 &lt;&lt; L&#34;, &#34; &lt;&lt; c2 &lt;&lt; L&#39;\n&#39;;
}
```
-* std::wcout[link ../../iostream/wcout.md.nolink]
+* std::wcout[link ../../iostream/wcout.md]
* widen[color ff0000]
### 出力
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>Init -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/ios/ios_base/Init.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/ios/ios_base/Init.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ios/ios_base/Init.md b/reference/ios/ios_base/Init.md
index 665d24698..7fe5ff790 100644
--- a/reference/ios/ios_base/Init.md
+++ b/reference/ios/ios_base/Init.md
@@ -40,12 +40,12 @@ namespace std {
- [Visual C++](/implementation.md#visual_cpp): ??
-## 参照
+## 関連項目
- [`cin`](../../iostream/cin.md)
- [`cout`](../../iostream/cout.md)
- [`cerr`](../../iostream/cerr.md)
- [`clog`](../../iostream/clog.md)
-- [`wcin`](../../iostream/wcin.md.nolink)
-- [`wcout`](../../iostream/wcout.md.nolink)
+- [`wcin`](../../iostream/wcin.md)
+- [`wcout`](../../iostream/wcout.md)
- [`wcerr`](../../iostream/wcerr.md.nolink)
- [`wclog`](../../iostream/wclog.md.nolink)
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>コンストラクタ -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/ios/ios_base/Init/op_constructor.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/ios/ios_base/Init/op_constructor.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ios/ios_base/Init/op_constructor.md b/reference/ios/ios_base/Init/op_constructor.md
index f3d01ac9d..c2c057ae0 100644
--- a/reference/ios/ios_base/Init/op_constructor.md
+++ b/reference/ios/ios_base/Init/op_constructor.md
@@ -14,7 +14,7 @@ Init();
## 効果
`Init` クラスのオブジェクトを構築する。
-[`cin`](../../../iostream/cin.md)、[`cout`](../../../iostream/cout.md)、[`cerr`](../../../iostream/cerr.md)、[`clog`](../../../iostream/clog.md)、[`wcin`](../../../iostream/wcin.md.nolink)、[`wcout`](../../../iostream/wcout.md.nolink)、[`wcerr`](../../../iostream/wcerr.md.nolink)、[`wclog`](../../../iostream/wclog.md.nolink) の 8 つのオブジェクトが構築・初期化されていなければ、それらの構築・初期化を行う。
+[`cin`](../../../iostream/cin.md)、[`cout`](../../../iostream/cout.md)、[`cerr`](../../../iostream/cerr.md)、[`clog`](../../../iostream/clog.md)、[`wcin`](../../../iostream/wcin.md)、[`wcout`](../../../iostream/wcout.md)、[`wcerr`](../../../iostream/wcerr.md.nolink)、[`wclog`](../../../iostream/wclog.md.nolink) の 8 つのオブジェクトが構築・初期化されていなければ、それらの構築・初期化を行う。
## バージョン
@@ -28,13 +28,13 @@ Init();
- [Visual C++](/implementation.md#visual_cpp): ??
-## 参照
+## 関連項目
- [`~Init`](op_destructor.md)
- [`cin`](../../../iostream/cin.md)
- [`cout`](../../../iostream/cout.md)
- [`cerr`](../../../iostream/cerr.md)
- [`clog`](../../../iostream/clog.md)
-- [`wcin`](../../../iostream/wcin.md.nolink)
-- [`wcout`](../../../iostream/wcout.md.nolink)
+- [`wcin`](../../../iostream/wcin.md)
+- [`wcout`](../../../iostream/wcout.md)
- [`wcerr`](../../../iostream/wcerr.md.nolink)
- [`wclog`](../../../iostream/wclog.md.nolink)
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>デストラクタ -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/ios/ios_base/Init/op_destructor.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/ios/ios_base/Init/op_destructor.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ios/ios_base/Init/op_destructor.md b/reference/ios/ios_base/Init/op_destructor.md
index 6df9b86e5..71344a82c 100644
--- a/reference/ios/ios_base/Init/op_destructor.md
+++ b/reference/ios/ios_base/Init/op_destructor.md
@@ -14,7 +14,7 @@
## 効果
`Init` クラスのオブジェクトを破棄する。
-`Init` クラスのインスタンスが他に無かった場合、[`cout`](../../../iostream/cout.md)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()`、[`cerr`](../../../iostream/cerr.md)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()`、[`clog`](../../../iostream/clog.md)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()`、[`wcout`](../../../iostream/wcout.md.nolink)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()`、[`wcerr`](../../../iostream/wcerr.md.nolink)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()`、[`wclog`](../../../iostream/wclog.md.nolink)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()` を呼び出す。
+`Init` クラスのインスタンスが他に無かった場合、[`cout`](../../../iostream/cout.md)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()`、[`cerr`](../../../iostream/cerr.md)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()`、[`clog`](../../../iostream/clog.md)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()`、[`wcout`](../../../iostream/wcout.md)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()`、[`wcerr`](../../../iostream/wcerr.md.nolink)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()`、[`wclog`](../../../iostream/wclog.md.nolink)`.`[`flush`](../../../ostream/basic_ostream/flush.md)`()` を呼び出す。
## バージョン
@@ -28,12 +28,12 @@
- [Visual C++](/implementation.md#visual_cpp): ??
-## 参照
+## 関連項目
- [`Init`](op_constructor.md)
- [`cout`](../../../iostream/cout.md)
- [`cerr`](../../../iostream/cerr.md)
- [`clog`](../../../iostream/clog.md)
-- [`wcout`](../../../iostream/wcout.md.nolink)
+- [`wcout`](../../../iostream/wcout.md)
- [`wcerr`](../../../iostream/wcerr.md.nolink)
- [`wclog`](../../../iostream/wclog.md.nolink)
- [`basic_ostream`](../../../ostream/basic_ostream.md)`::`[`flush`](../../../ostream/basic_ostream/flush.md)
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>sync_with_stdio -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/ios/ios_base/sync_with_stdio.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/ios/ios_base/sync_with_stdio.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ios/ios_base/sync_with_stdio.md b/reference/ios/ios_base/sync_with_stdio.md
index 1cd854097..4522b5fcf 100644
--- a/reference/ios/ios_base/sync_with_stdio.md
+++ b/reference/ios/ios_base/sync_with_stdio.md
@@ -54,14 +54,14 @@ int main()
```
-## 参照
+## 関連項目
- 標準ストリームオブジェクト
- [`cin`](../../iostream/cin.md)
- [`cout`](../../iostream/cout.md)
- [`cerr`](../../iostream/cerr.md)
- [`clog`](../../iostream/clog.md)
- - [`wcin`](../../iostream/wcin.md.nolink)
- - [`wcout`](../../iostream/wcout.md.nolink)
+ - [`wcin`](../../iostream/wcin.md)
+ - [`wcout`](../../iostream/wcout.md)
- [`wcerr`](../../iostream/wcerr.md.nolink)
- [`wclog`](../../iostream/wclog.md.nolink)
- C 言語ライブラリの標準ストリームオブジェクト
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>iostream -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/iostream.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/iostream.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<content type="html"><div class="header">&lt;iostream&gt;</div><h1 itemprop="name"><span class="token">iostream</span></h1>
<div itemprop="articleBody"><p><code>&lt;iostream&gt;</code>ヘッダは、標準入出力オブジェクトを提供する。</p>
<p>このヘッダは、以下のヘッダをインクルードすることが規定されている。</p>
<ul>
<li><code><a href="ios.html">&lt;ios&gt;</a></code></li>
<li><code><a href="streambuf.html">&lt;streambuf&gt;</a></code></li>
<li><code><a href="istream.html">&lt;istream&gt;</a></code></li>
<li><code><a href="ostream.html">&lt;ostream&gt;</a></code></li>
</ul>
<p>このため、入出力機能に関する基本的な型や関数(<code><a href="ostream/endl.html">endl</a></code>など主要なマニピュレータを含む)を使用する目的で、このヘッダをインクルードしても良いだろう。</p>
<p>なお、<code><a href="istream/basic_iostream.html">basic_iostream</a></code>、<code><a href="istream/basic_iostream.html">iostream</a></code>、<code><a href="istream/basic_iostream.html">wiostream</a></code>は<code><a href="istream.html">&lt;istream&gt;</a></code>で定義されている。</p>
<h2>標準入出力オブジェクト</h2>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>名前</th>
<th>説明</th>
<th>対応バージョン</th>
</tr>
</thead>
<tbody>
<tr>
<td><code><a href="iostream/cin.html">cin</a></code></td>
<td>マルチバイト文字による標準入力</td>
<td></td>
</tr>
<tr>
<td><code><a href="iostream/cout.html">cout</a></code></td>
<td>マルチバイト文字による標準出力</td>
<td></td>
</tr>
<tr>
<td><code><a href="iostream/clog.html">clog</a></code></td>
<td>マルチバイト文字による標準エラー出力</td>
<td></td>
</tr>
<tr>
<td><code><a href="iostream/cerr.html">cerr</a></code></td>
<td>マルチバイト文字による標準エラー出力(バッファリング無し)</td>
<td></td>
</tr>
<tr>
<td><code><a href="iostream/wcin.html">wcin</a></code></td>
<td>ワイド文字による標準入力</td>
<td></td>
</tr>
<tr>
<td><code><a href="iostream/wcout.html">wcout</a></code></td>
<td>ワイド文字による標準出力</td>
<td></td>
</tr>
<tr>
<td><code><a href="iostream/clog.html">wclog</a></code></td>
<td>ワイド文字による標準エラー出力</td>
<td></td>
</tr>
<tr>
<td><code><a href="iostream/cerr.html">wcerr</a></code></td>
<td>ワイド文字による標準エラー出力(バッファリング無し)</td>
<td></td>
</tr>
</tbody>
</table></div></content>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>cin -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/iostream/cin.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/iostream/cin.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/iostream/cin.md b/reference/iostream/cin.md
index c4f755b89..5ebb00a42 100644
--- a/reference/iostream/cin.md
+++ b/reference/iostream/cin.md
@@ -6,11 +6,9 @@
```cpp
namespace std {
extern istream cin;
- extern wistream wcin;
}
```
* istream[link ../istream/basic_istream.md]
-* wistream[link ../istream/basic_istream.md]
## 概要
`cin` は、標準入力に対する入力ストリームオブジェクトである。
@@ -20,7 +18,7 @@ namespace std {
本オブジェクトは、初期化が完了すると [`tie`](../ios/basic_ios/tie.md)`()` が `&amp;`[`cout`](cout.md) を返すようになる。
その他の状態は、[`basic_ios`](../ios/basic_ios.md)`::`[`init`](../ios/basic_ios/init.md) の事後条件と同様である。
-`cin`は`character input`を意味する。また`wcin`は`wide character input`を意味する。&lt;sup&gt;&lt;a id=&#34;cite_ref-1&#34; href=&#34;#cite-1&#34;&gt;[1]&lt;/a&gt;&lt;/sup&gt;
+`cin`は`character input`を意味する。&lt;sup&gt;&lt;a id=&#34;cite_ref-1&#34; href=&#34;#cite-1&#34;&gt;[1]&lt;/a&gt;&lt;/sup&gt;
## 例
```cpp example
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>cout -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/iostream/cout.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/iostream/cout.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/iostream/cout.md b/reference/iostream/cout.md
index ed878e357..3e0f19489 100644
--- a/reference/iostream/cout.md
+++ b/reference/iostream/cout.md
@@ -6,18 +6,17 @@
```cpp
namespace std {
extern ostream cout;
- extern wostream wcout;
}
```
* ostream[link ../ostream/basic_ostream.md]
-* wostream[link ../ostream/basic_ostream.md]
+* ostream[link ../ostream/basic_ostream.md]
## 概要
-`cout`も`wcout`も、標準出力に対する出力ストリームオブジェクトである。
+`cout`は、標準出力に対する出力ストリームオブジェクトである。
すなわち、[`std::basic_streambuf`](../streambuf/basic_streambuf.md)から派生していて`&lt;cstdio&gt;`の`stdout`オブジェクトに結びつけられているストリームバッファに出力する。
-`cout`は`character output`を意味する。また`wcout`は`wide character output`を意味する。&lt;sup&gt;&lt;a id=&#34;cite_ref-1&#34; href=&#34;#cite-1&#34;&gt;[1]&lt;/a&gt;&lt;/sup&gt;
+`cout`は`character output`を意味する。
## 例
```cpp example
@@ -39,73 +38,6 @@ Hello world
### 言語
- C++98
-### 備考
-
-`wcout`は規格上実装しなければならないが、実装されていなかったり、期待どおりに動作しない事がある。
-
-#### localeの設定
-望む出力を得るためにlocaleを再設定しなければならない場合がある。
-
-例えばVisual Studioでは
-
-```cpp example
-#include &lt;iostream&gt;
-
-int main()
-{
- std::wcout.imbue(std::locale(&#34;&#34;));
- //std::wcout.imbue(std::locale(&#34;ja&#34;));
- //std::wcout.imbue(std::locale(&#34;japanese&#34;));
- std::wcout &lt;&lt; L&#34;ありきたりな世界&#34; &lt;&lt; std::endl;
-}
-```
-* std::wcout[color ff0000]
-* imbue[link /reference/ios/basic_ios/imbue.md]
-
-のようにして設定しないと何も表示されない。
-
-`std::locale(&#34;&#34;)`とすると本来はOSに設定されたロケールが設定されるはずが、MinGW環境でコンパイルし実行すると、以下のようなエラーが出力されてしまう。
-
-```
-terminate called after throwing an instance of &#39;std::runtime_error&#39;
- what(): locale::facet::_S_create_c_locale name not valid
-```
-
-一方、以下のようなコードなら求める結果が得られる処理系もある。
-
-```cpp example
-#include &lt;iostream&gt;
-
-int main()
-{
- std::ios_base::sync_with_stdio(false);
- std::locale default_loc(&#34;&#34;);
- std::locale::global(default_loc);
- std::locale ctype_default(std::locale::classic(), default_loc, std::locale::ctype); //※
- std::wcout.imbue(ctype_default);
- std::wcout &lt;&lt; L&#34;ありきたりな世界&#34; &lt;&lt; std::endl;
-}
-```
-* std::wcout[color ff0000]
-* imbue[link /reference/ios/basic_ios/imbue.md]
-
-このように求める結果を得るためのlocaleの設定は処理系によって大きく異なる。
-
-#### 端末のロケールやフォントなど
-
-`wcout`を使ったとしても、結局`stdout`に出力するので、その標準出力を受け取って表示する端末のロケールやフォントなどの設定も考える必要がある。
-
-##### Windows
-Windowsでは`wchar_t`型といえばUTF-16でエンコードされた文字を指す。もし標準出力を受け取って表示するコンソールのロケールがUTF-8(65001)であるならばUTF-16からUTF-8への変換は一対一対応するため変換段階において問題は起きない。
-
-しかしながらデフォルトのロケールがUTF-8(65001)ではない事が多い(日本語利用者なら932になっている事が多い)ため、そのロケールで対応していないUnicodeコードポイントは当然変換できないので文字化けする。`chcp 65001`などでUTF-8にすることができる。
-
-こうしてUTF-8としてコンソールが文字列を受け取ったとしてもそれを正しく表示できるとは限らない。まずフォントが表示したい文字をすべて含んでいなければならない。またそうしたフォントを使えるようになっていなければならない。Windows10 1709より前では、ロケールをUTF-8にしたときのフォントの指定に制約があり、実質日本語を表示することは不可能だった。次に、🍣🍺のような色のついた絵文字を表示するためには、フォントの対応に加えて、それをDirectWriteなどを用いて描画されることが前提となる。例えばコマンドプロンプトはGDIで描画するため原理上不可能である。Microsoftが開発している[Windows Terminal](https://github.com/microsoft/terminal)ではこうした描画側の問題を克服しようとしている。
-
-## 出典
-
-1. **&lt;a id=&#34;cite-1&#34; href=&#34;#cite_ref-1&#34;&gt;^&lt;/a&gt;** &lt;cite&gt;[Stroustrup: C++ Style and Technique FAQ](http://www.stroustrup.com/bs_faq2.html#cout)&lt;/cite&gt;(2018-08-21 17:01 JST 閲覧)
-
## 参照
- [使用できるロケール文字列](../../article/platform/locales.md)
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>wcin -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/iostream/wcin.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/iostream/wcin.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/iostream/wcin.md b/reference/iostream/wcin.md
new file mode 100644
index 000000000..860452ffd
--- /dev/null
+++ b/reference/iostream/wcin.md
@@ -0,0 +1,57 @@
+# wcin
+* iostream[meta header]
+* std[meta namespace]
+* variable[meta id-type]
+
+```cpp
+namespace std {
+ extern wistream wcin;
+}
+```
+* wistream[link ../istream/basic_istream.md]
+
+## 概要
+`wcin` は、標準入力に対するワイド文字用の入力ストリームオブジェクトである。
+
+すなわち、[`std::basic_streambuf`](../streambuf/basic_streambuf.md)から派生していて`&lt;cstdio&gt;`の`stdin`オブジェクトに結びつけられているストリームバッファから入力を受ける。
+
+本オブジェクトは、初期化が完了すると [`tie`](../ios/basic_ios/tie.md)`()` が `&amp;`[`wcout`](wcout.md) を返すようになる。
+その他の状態は、[`basic_ios`](../ios/basic_ios.md)`::`[`init`](../ios/basic_ios/init.md) の事後条件と同様である。
+
+`wcin`は`wide character input`を意味する。&lt;sup&gt;&lt;a id=&#34;cite_ref-1&#34; href=&#34;#cite-1&#34;&gt;[1]&lt;/a&gt;&lt;/sup&gt;
+
+## 例
+```cpp example
+#include &lt;iostream&gt;
+#include &lt;string&gt;
+
+int main()
+{
+ std::wcout &lt;&lt; L&#34;名前を入力してください: &#34;;
+
+ std::wstring s; // std::wcin.tie() == &amp;std::wcout であるため、
+ std::wcin &gt;&gt; s; // std::wcout を明示的に flush しなくても
+ // 上記の出力が flush されることが保証されている
+
+ std::wcout &lt;&lt; L&#34;あなたの名前は「&#34; &lt;&lt; s &lt;&lt; L&#34;」ですね。&#34; &lt;&lt; std::endl;
+}
+```
+* std::wcin[color ff0000]
+
+### 出力例
+```
+名前を入力してください:たろう
+あなたの名前は「たろう」ですね
+```
+
+## バージョン
+### 言語
+- C++98
+
+## 出典
+
+1. **&lt;a id=&#34;cite-1&#34; href=&#34;#cite_ref-1&#34;&gt;^&lt;/a&gt;** &lt;cite&gt;[Stroustrup: C++ Style and Technique FAQ](http://www.stroustrup.com/bs_faq2.html#cout)&lt;/cite&gt;(2018-08-21 17:01 JST 閲覧)
+
+## 関連項目
+
+- [`cin`](cin.md)
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>wcout -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/iostream/wcout.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/iostream/wcout.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/iostream/wcout.md b/reference/iostream/wcout.md
new file mode 100644
index 000000000..b3b082964
--- /dev/null
+++ b/reference/iostream/wcout.md
@@ -0,0 +1,118 @@
+# wcout
+* iostream[meta header]
+* std[meta namespace]
+* variable[meta id-type]
+
+```cpp
+namespace std {
+ extern wostream wcout;
+}
+```
+* ostream[link ../ostream/basic_ostream.md]
+* wostream[link ../ostream/basic_ostream.md]
+
+## 概要
+`wcout`は、標準出力に対するワイド文字用の出力ストリームオブジェクトである。
+
+すなわち、[`std::basic_streambuf`](../streambuf/basic_streambuf.md)から派生していて`&lt;cstdio&gt;`の`stdout`オブジェクトに結びつけられているストリームバッファに出力する。
+
+`wcout`は`wide character output`を意味する。&lt;sup&gt;&lt;a id=&#34;cite_ref-1&#34; href=&#34;#cite-1&#34;&gt;[1]&lt;/a&gt;&lt;/sup&gt;
+
+## 例
+```cpp example
+#include &lt;iostream&gt;
+
+int main()
+{
+ std::wcout &lt;&lt; L&#34;Hello world&#34; &lt;&lt; std::endl;
+}
+```
+* std::wcout[color ff0000]
+
+### 出力
+```
+Hello world
+```
+
+## バージョン
+### 言語
+- C++98
+
+### 備考
+
+`wcout`は規格上実装しなければならないが、実装されていなかったり、期待どおりに動作しない事がある。
+
+#### localeの設定
+望む出力を得るためにlocaleを再設定しなければならない場合がある。
+
+例えばVisual Studioでは
+
+```cpp example
+#include &lt;iostream&gt;
+
+int main()
+{
+ std::wcout.imbue(std::locale(&#34;&#34;));
+ //std::wcout.imbue(std::locale(&#34;ja&#34;));
+ //std::wcout.imbue(std::locale(&#34;japanese&#34;));
+ std::wcout &lt;&lt; L&#34;ありきたりな世界&#34; &lt;&lt; std::endl;
+}
+```
+* std::wcout[color ff0000]
+* imbue[link /reference/ios/basic_ios/imbue.md]
+
+のようにして設定しないと何も表示されない。
+
+`std::locale(&#34;&#34;)`とすると本来はOSに設定されたロケールが設定されるはずが、MinGW環境でコンパイルし実行すると、以下のようなエラーが出力されてしまう。
+
+```
+terminate called after throwing an instance of &#39;std::runtime_error&#39;
+ what(): locale::facet::_S_create_c_locale name not valid
+```
+
+一方、以下のようなコードなら求める結果が得られる処理系もある。
+
+```cpp example
+#include &lt;iostream&gt;
+
+int main()
+{
+ std::ios_base::sync_with_stdio(false);
+ std::locale default_loc(&#34;&#34;);
+ std::locale::global(default_loc);
+ std::locale ctype_default(std::locale::classic(), default_loc, std::locale::ctype); //※
+ std::wcout.imbue(ctype_default);
+ std::wcout &lt;&lt; L&#34;ありきたりな世界&#34; &lt;&lt; std::endl;
+}
+```
+* std::wcout[color ff0000]
+* imbue[link /reference/ios/basic_ios/imbue.md]
+
+このように求める結果を得るためのlocaleの設定は処理系によって大きく異なる。
+
+#### 端末のロケールやフォントなど
+
+`wcout`を使ったとしても、結局`stdout`に出力するので、その標準出力を受け取って表示する端末のロケールやフォントなどの設定も考える必要がある。
+
+##### Windows
+Windowsでは`wchar_t`型といえばUTF-16でエンコードされた文字を指す。もし標準出力を受け取って表示するコンソールのロケールがUTF-8(65001)であるならばUTF-16からUTF-8への変換は一対一対応するため変換段階において問題は起きない。
+
+しかしながらデフォルトのロケールがUTF-8(65001)ではない事が多い(日本語利用者なら932になっている事が多い)ため、そのロケールで対応していないUnicodeコードポイントは当然変換できないので文字化けする。`chcp 65001`などでUTF-8にすることができる。
+
+こうしてUTF-8としてコンソールが文字列を受け取ったとしてもそれを正しく表示できるとは限らない。まずフォントが表示したい文字をすべて含んでいなければならない。またそうしたフォントを使えるようになっていなければならない。Windows10 1709より前では、ロケールをUTF-8にしたときのフォントの指定に制約があり、実質日本語を表示することは不可能だった。次に、🍣🍺のような色のついた絵文字を表示するためには、フォントの対応に加えて、それをDirectWriteなどを用いて描画されることが前提となる。例えばコマンドプロンプトはGDIで描画するため原理上不可能である。Microsoftが開発している[Windows Terminal](https://github.com/microsoft/terminal)ではこうした描画側の問題を克服しようとしている。
+
+## 出典
+
+1. **&lt;a id=&#34;cite-1&#34; href=&#34;#cite_ref-1&#34;&gt;^&lt;/a&gt;** &lt;cite&gt;[Stroustrup: C++ Style and Technique FAQ](http://www.stroustrup.com/bs_faq2.html#cout)&lt;/cite&gt;(2018-08-21 17:01 JST 閲覧)
+
+## 関連項目
+
+- [`cout`](cout.md)
+
+## 参照
+
+- [使用できるロケール文字列](../../article/platform/locales.md)
+- [標準出力に書き込む | 株式会社きじねこ](https://web.archive.org/web/20191011112040/http://www.kijineko.co.jp/tech/cppsamples/stdout.html)
+- [c++で日本語の処理(ロケール周り) 7/8追記 - nullnull7の日記](http://nullnull.hatenablog.com/entry/20120629/1340935277)
+- [std::locale constructor modifies global locale via &#34;setlocale()&#34; | Microsoft Connect](http://web.archive.org/web/20100328154628/http://connect.microsoft.com:80/VisualStudio/feedback/details/492128/std-locale-constructor-modifies-global-locale-via-setlocale)
+- [ASCII.jp:Windows 10に“まとも”に使えるコンソール「WindowsTerminal」が登場する (2/2)](https://ascii.jp/elem/000/001/868/1868623/2/)
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>basic_istream -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/istream/basic_istream.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/istream/basic_istream.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/istream/basic_istream.md b/reference/istream/basic_istream.md
index 282334181..094c4a3f9 100644
--- a/reference/istream/basic_istream.md
+++ b/reference/istream/basic_istream.md
@@ -145,6 +145,6 @@ syncは非書式化入力関数である。
- [`basic_ios`](../ios/basic_ios.md)
- `basic_istream&lt;&gt;`型のオブジェクト
- [`cin`](../iostream/cin.md)
- - [`wcin`](../iostream/wcin.md.nolink)
+ - [`wcin`](../iostream/wcin.md)
- [P1264R2 Revising the wording of stream input operations](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p1264r2.pdf)
- C++23からローカルエラー状態の概念が導入され、入力関数のエラー処理セマンティクスが明確化された
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>basic_ostream -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/ostream/basic_ostream.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/ostream/basic_ostream.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ostream/basic_ostream.md b/reference/ostream/basic_ostream.md
index 7aa40f28c..70a910c56 100644
--- a/reference/ostream/basic_ostream.md
+++ b/reference/ostream/basic_ostream.md
@@ -106,7 +106,7 @@ namespace std {
- [`basic_ios`](../ios/basic_ios.md)
- `basic_ostream&lt;&gt;`型のオブジェクト
- [`cout`](../iostream/cout.md)
- - [`wcout`](../iostream/wcout.md.nolink)
+ - [`wcout`](../iostream/wcout.md)
- [`clog`](../iostream/clog.md)
- [`wclog`](../iostream/wclog.md.nolink)
- [`cerr`](../iostream/cerr.md)
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>operator<< (非メンバ関数) -- new: wcin.md, wcout.md (#1608)</title>
<link href="https://cpprefjp.github.io/reference/ostream/basic_ostream/op_ostream_free.html"/>
<id>ca4c2713c1d029e15b289154d209f065710b72c8:reference/ostream/basic_ostream/op_ostream_free.md</id>
<updated>2026-04-25T09:09:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ostream/basic_ostream/op_ostream_free.md b/reference/ostream/basic_ostream/op_ostream_free.md
index f655a5dad..fdca09f75 100644
--- a/reference/ostream/basic_ostream/op_ostream_free.md
+++ b/reference/ostream/basic_ostream/op_ostream_free.md
@@ -135,7 +135,7 @@ int main()
std::wcout &lt;&lt; std::setw(10) &lt;&lt; &#34;cpprefjp&#34; &lt;&lt; std::endl;
}
```
-* std::wcout[link ../../iostream/wcout.md.nolink]
+* std::wcout[link ../../iostream/wcout.md]
* std::left[link ../../ios/left.md]
* std::setfill[link ../../iomanip/setfill.md]
* std::setw[link ../../iomanip/setw.md]
</code></pre></summary>
<author>
<name>rotarymars</name>
<email>s.goto2050@gmail.com</email>
</author>
</entry>
<entry>
<title>start-join-sender -- execution/(simple_)counting_scope: LWG4504適用</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/counting_scope/start-join-sender.html"/>
<id>d4a7aac362839892445673f02afadbb97c6430f4:reference/execution/execution/counting_scope/start-join-sender.md</id>
<updated>2026-04-23T21:27:56+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/counting_scope/start-join-sender.md b/reference/execution/execution/counting_scope/start-join-sender.md
index 318420e84..c9e7d5a66 100644
--- a/reference/execution/execution/counting_scope/start-join-sender.md
+++ b/reference/execution/execution/counting_scope/start-join-sender.md
@@ -17,9 +17,8 @@ bool start-join-sender(State&amp; st) noexcept; // exposition only
## 効果
-説明用のメンバ変数`state`に応じて、
+説明用のメンバ変数`count`が`0`のとき、`state`を`joined`に変更して`true`を返す。そうでなければ、`state`に応じて、
-- `unused`, `unused-and-closed`, `joined`のとき、`state`を`joined`に変更して`true`を返す。
- `open`, `open-and-joining`のとき、`state`を`open-and-joining`に変更し、`*this`で`st`を登録して`false`を返す。
- `closed`, `closed-and-joining`のとき、`state`を`closed-and-joining`に変更し、`*this`で`st`を登録して`false`を返す。
@@ -34,3 +33,4 @@ bool start-join-sender(State&amp; st) noexcept; // exposition only
## 参照
- [P3149R11 `async_scope` - Creating scopes for non-sequential concurrency](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3149r11.html)
+- [LWG4504. Wording problem in `{simple_}counting_scope`](https://cplusplus.github.io/LWG/issue4504)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>start-join-sender -- execution/(simple_)counting_scope: LWG4504適用</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/simple_counting_scope/start-join-sender.html"/>
<id>d4a7aac362839892445673f02afadbb97c6430f4:reference/execution/execution/simple_counting_scope/start-join-sender.md</id>
<updated>2026-04-23T21:27:56+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/simple_counting_scope/start-join-sender.md b/reference/execution/execution/simple_counting_scope/start-join-sender.md
index fc83c74a0..0a01cc6a2 100644
--- a/reference/execution/execution/simple_counting_scope/start-join-sender.md
+++ b/reference/execution/execution/simple_counting_scope/start-join-sender.md
@@ -17,9 +17,8 @@ bool start-join-sender(State&amp; st) noexcept; // exposition only
## 効果
-説明用のメンバ変数`state`に応じて、
+説明用のメンバ変数`count`が`0`のとき、`state`を`joined`に変更して`true`を返す。そうでなければ、`state`に応じて、
-- `unused`, `unused-and-closed`, `joined`のとき、`state`を`joined`に変更して`true`を返す。
- `open`, `open-and-joining`のとき、`state`を`open-and-joining`に変更し、`*this`で`st`を登録して`false`を返す。
- `closed`, `closed-and-joining`のとき、`state`を`closed-and-joining`に変更し、`*this`で`st`を登録して`false`を返す。
@@ -35,3 +34,4 @@ bool start-join-sender(State&amp; st) noexcept; // exposition only
## 参照
- [P3149R11 `async_scope` - Creating scopes for non-sequential concurrency](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3149r11.html)
+- [LWG4504. Wording problem in `{simple_}counting_scope`](https://cplusplus.github.io/LWG/issue4504)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>run_loop -- execution/run_loop: LWG4476適用</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/run_loop.html"/>
<id>8ba04f913aeb2162205355f5b8c86f88ef9d153a:reference/execution/execution/run_loop.md</id>
<updated>2026-04-23T21:23:31+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 48b1f853c..7f4feeaba 100644
--- a/reference/execution/execution/run_loop.md
+++ b/reference/execution/execution/run_loop.md
@@ -121,3 +121,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)
+- [LWG4476. `run_loop` should not have a `set_error` completion](https://cplusplus.github.io/LWG/issue4476)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>finish -- execution/run_loop: LWG4476適用</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/run_loop/finish.html"/>
<id>8ba04f913aeb2162205355f5b8c86f88ef9d153a:reference/execution/execution/run_loop/finish.md</id>
<updated>2026-04-23T21:23:31+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 fe72b5e9a..3a95d1c68 100644
--- a/reference/execution/execution/run_loop/finish.md
+++ b/reference/execution/execution/run_loop/finish.md
@@ -6,7 +6,7 @@
* cpp26[meta cpp]
```cpp
-void finish();
+void finish() noexcept;
```
## 概要
@@ -21,6 +21,10 @@ void finish();
説明専用メンバ`state`を終了中(finishing)に変更する。
+## 例外
+投げない
+
+
## 同期操作
メンバ関数`finish`および説明専用メンバ関数[`pop-front`, `push-back`](run.md)は不可分(atomically)に実行される。
@@ -64,3 +68,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)
+- [LWG4476. `run_loop` should not have a `set_error` completion](https://cplusplus.github.io/LWG/issue4476)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>get_scheduler -- execution/run_loop: LWG4476適用</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/run_loop/get_scheduler.html"/>
<id>8ba04f913aeb2162205355f5b8c86f88ef9d153a:reference/execution/execution/run_loop/get_scheduler.md</id>
<updated>2026-04-23T21:23:31+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 cde02aa02..73d8a97b6 100644
--- a/reference/execution/execution/run_loop/get_scheduler.md
+++ b/reference/execution/execution/run_loop/get_scheduler.md
@@ -6,7 +6,7 @@
* cpp26[meta cpp]
```cpp
-run-loop-scheduler get_scheduler();
+run-loop-scheduler get_scheduler() noexcept;
```
* run-loop-scheduler[link run-loop-scheduler.md]
@@ -18,6 +18,10 @@ run-loop-scheduler get_scheduler();
`run_loop`インスタンス上で作業を[スケジュール](../schedule.md)する[`run-loop-scheduler`](run-loop-scheduler.md)インスタンスを返す。
+## 例外
+投げない
+
+
## 例
```cpp example
#include &lt;cassert&gt;
@@ -83,3 +87,4 @@ int main()
## 参照
- [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
+- [LWG4476. `run_loop` should not have a `set_error` completion](https://cplusplus.github.io/LWG/issue4476)
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>run-loop-opstate -- execution/run_loop: LWG4476適用</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/run_loop/run-loop-opstate.html"/>