-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrss.xml
3650 lines (3592 loc) · 276 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-04-03T04:56:23.926420</updated>
<id>08d5d707-8545-4a41-8bf2-0f610ded3bc5</id>
<entry>
<title>属性構文 [N2761] -- C++26 P3475R2 consume操作の非推奨化(#1420)</title>
<link href="https://cpprefjp.github.io/lang/cpp11/attributes.html"/>
<id>1dd1b045fbbf312e5a9cd213fd542e789788699b:lang/cpp11/attributes.md</id>
<updated>2025-04-03T13:51:18+09:00</updated>
<summary type="html"><pre><code>diff --git a/lang/cpp11/attributes.md b/lang/cpp11/attributes.md
index b48a93794..ac564a646 100644
--- a/lang/cpp11/attributes.md
+++ b/lang/cpp11/attributes.md
@@ -15,7 +15,7 @@
属性は`[[attr]]`のように、属性のリストを二重角カッコで囲んで指定する。C++11時点の標準では、以下の2つの属性を定義する:
1. `[[noreturn]]` : 関数が決して返らないことをコンパイラに伝える
-2. `[[carries_dependency]]` : データの依存性を持たせる or 維持する
+2. `[[carries_dependency]]` : データの依存性を持たせる or 維持する (C++26で削除)
## 仕様
@@ -60,6 +60,10 @@ int main()
### &lt;a id=&#34;carries_dependency&#34; href=&#34;#carries_dependency&#34;&gt;`[[carries_dependency]]`属性&lt;/a&gt;
+この属性はC++26で削除された。
+
+[`memory_order_consume`](/reference/atomic/memory_order.md)順序付けを実装したC++処理系は存在せず、本属性の代替機能も提供されない。
+
`[[carries_dependency]]`は、並行プログラミングのアトミック操作において、値に依存した順序付け [`memory_order`](/reference/atomic/memory_order.md)を、関数をまたいで伝播することを明示するための属性である。
以下は、[`memory_order_consume`](/reference/atomic/memory_order.md)を使用した順序付けの例である:
@@ -179,4 +183,6 @@ C++11で採用されたもの以外で検討された以下の機能は、属性
- [N2418 Towards support for attributes in C++ (Revision 3)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2418.pdf)
- [N2643 C++ Data-Dependency Ordering: Function Annotation](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2643.html)
- [N2761 Towards support for attributes in C++ (Revision 6) ](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2761.pdf)
+- [P3475R2 Defang and deprecate memory_order::consume](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3475r2.pdf)
+ - C++26で`memory_order::consume`非推奨化に伴い`carries_dependency`属性を削除。
- [(抄訳)N4215 `memory_order_consume`の利用と実装に向けて[§5-6のみ]](http://d.hatena.ne.jp/yohhoy/20141115/p1)
</code></pre></summary>
<author>
<name>yoh</name>
<email>[email protected]</email>
</author>
</entry>
<entry>
<title>store -- C++26 P3475R2 consume操作の非推奨化(#1420)</title>
<link href="https://cpprefjp.github.io/reference/atomic/atomic/store.html"/>
<id>1dd1b045fbbf312e5a9cd213fd542e789788699b:reference/atomic/atomic/store.md</id>
<updated>2025-04-03T13:51:18+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/atomic/atomic/store.md b/reference/atomic/atomic/store.md
index da13dfc8d..37e3c54e2 100644
--- a/reference/atomic/atomic/store.md
+++ b/reference/atomic/atomic/store.md
@@ -35,7 +35,7 @@ constexpr void
## 事前条件
`order`が以下のメモリオーダーではないこと:
-- [`memory_order_consume`](/reference/atomic/memory_order.md)
+- [`memory_order_consume`](/reference/atomic/memory_order.md) (C++26で非推奨)
- [`memory_order_acquire`](/reference/atomic/memory_order.md)
- [`memory_order_acq_rel`](/reference/atomic/memory_order.md)
@@ -96,3 +96,4 @@ int main()
- C++20での、`volatile`版への制約追加
- [P3309R3 `constexpr atomic` and `atomic_ref`](https://open-std.org/jtc1/sc22/wg21/docs/papers/2024/p3309r3.html)
- C++26で`constexpr`に対応した
+- [P3475R2 Defang and deprecate memory_order::consume](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3475r2.pdf)
</code></pre></summary>
<author>
<name>yoh</name>
<email>[email protected]</email>
</author>
</entry>
<entry>
<title>clear -- C++26 P3475R2 consume操作の非推奨化(#1420)</title>
<link href="https://cpprefjp.github.io/reference/atomic/atomic_flag/clear.html"/>
<id>1dd1b045fbbf312e5a9cd213fd542e789788699b:reference/atomic/atomic_flag/clear.md</id>
<updated>2025-04-03T13:51:18+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/atomic/atomic_flag/clear.md b/reference/atomic/atomic_flag/clear.md
index e8294272e..cae02407f 100644
--- a/reference/atomic/atomic_flag/clear.md
+++ b/reference/atomic/atomic_flag/clear.md
@@ -27,7 +27,7 @@ constexpr void
## 要件
`order`が以下のメモリオーダーではないこと:
-- [`memory_order_consume`](/reference/atomic/memory_order.md) (C++14)
+- [`memory_order_consume`](/reference/atomic/memory_order.md) (C++26で非推奨)
- [`memory_order_acquire`](/reference/atomic/memory_order.md)
- [`memory_order_acq_rel`](/reference/atomic/memory_order.md)
@@ -97,3 +97,4 @@ false
- [LWG Issue 2138. `atomic_flag::clear` should not accept `memory_order_consume`](http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#2138)
- [P3309R3 `constexpr atomic` and `atomic_ref`](https://open-std.org/jtc1/sc22/wg21/docs/papers/2024/p3309r3.html)
- C++26で`constexpr`に対応した
+- [P3475R2 Defang and deprecate memory_order::consume](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3475r2.pdf)
</code></pre></summary>
<author>
<name>yoh</name>
<email>[email protected]</email>
</author>
</entry>
<entry>
<title>atomic_flag_clear_explicit -- C++26 P3475R2 consume操作の非推奨化(#1420)</title>
<link href="https://cpprefjp.github.io/reference/atomic/atomic_flag_clear_explicit.html"/>
<id>1dd1b045fbbf312e5a9cd213fd542e789788699b:reference/atomic/atomic_flag_clear_explicit.md</id>
<updated>2025-04-03T13:51:18+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/atomic/atomic_flag_clear_explicit.md b/reference/atomic/atomic_flag_clear_explicit.md
index 380201c65..a9279fa81 100644
--- a/reference/atomic/atomic_flag_clear_explicit.md
+++ b/reference/atomic/atomic_flag_clear_explicit.md
@@ -31,7 +31,7 @@ namespace std {
## 要件
`order`が以下のメモリオーダーではないこと:
-- [`memory_order_consume`](memory_order.md) (C++14)
+- [`memory_order_consume`](memory_order.md) (C++26で非推奨)
- [`memory_order_acquire`](memory_order.md)
- [`memory_order_acq_rel`](memory_order.md)
@@ -102,3 +102,4 @@ false
- [LWG Issue 2138. `atomic_flag::clear` should not accept `memory_order_consume`](http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#2138)
- [P3309R3 `constexpr atomic` and `atomic_ref`](https://open-std.org/jtc1/sc22/wg21/docs/papers/2024/p3309r3.html)
- C++26で`constexpr`に対応した
+- [P3475R2 Defang and deprecate memory_order::consume](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3475r2.pdf)
</code></pre></summary>
<author>
<name>yoh</name>
<email>[email protected]</email>
</author>
</entry>
<entry>
<title>store -- C++26 P3475R2 consume操作の非推奨化(#1420)</title>
<link href="https://cpprefjp.github.io/reference/atomic/atomic_ref/store.html"/>
<id>1dd1b045fbbf312e5a9cd213fd542e789788699b:reference/atomic/atomic_ref/store.md</id>
<updated>2025-04-03T13:51:18+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/atomic/atomic_ref/store.md b/reference/atomic/atomic_ref/store.md
index 1e73ac4a7..0e747a4fc 100644
--- a/reference/atomic/atomic_ref/store.md
+++ b/reference/atomic/atomic_ref/store.md
@@ -27,7 +27,7 @@ constexpr void
## 事前条件
`order`が以下のメモリオーダーではないこと:
-- [`memory_order_consume`](/reference/atomic/memory_order.md)
+- [`memory_order_consume`](/reference/atomic/memory_order.md) (C++26で非推奨)
- [`memory_order_acquire`](/reference/atomic/memory_order.md)
- [`memory_order_acq_rel`](/reference/atomic/memory_order.md)
@@ -88,3 +88,4 @@ int main()
- C++26でCV修飾されたテンプレート引数を受け取れるようになった
- [P3309R3 `constexpr atomic` and `atomic_ref`](https://open-std.org/jtc1/sc22/wg21/docs/papers/2024/p3309r3.html)
- C++26で`constexpr`に対応した
+- [P3475R2 Defang and deprecate memory_order::consume](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3475r2.pdf)
</code></pre></summary>
<author>
<name>yoh</name>
<email>[email protected]</email>
</author>
</entry>
<entry>
<title>atomic_thread_fence -- C++26 P3475R2 consume操作の非推奨化(#1420)</title>
<link href="https://cpprefjp.github.io/reference/atomic/atomic_thread_fence.html"/>
<id>1dd1b045fbbf312e5a9cd213fd542e789788699b:reference/atomic/atomic_thread_fence.md</id>
<updated>2025-04-03T13:51:18+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/atomic/atomic_thread_fence.md b/reference/atomic/atomic_thread_fence.md
index 4ed4a0d77..517da4ea6 100644
--- a/reference/atomic/atomic_thread_fence.md
+++ b/reference/atomic/atomic_thread_fence.md
@@ -81,7 +81,8 @@ assert(i == 1 || j == 1); // すなわち、i と j が共に0となることは
| メモリオーダー | フェンス |
|---------------------------------------------|------------------------------------------------------------------|
| [`memory_order_relaxed`](memory_order.md) | 何も行わない |
-| [`memory_order_acquire`](memory_order.md)&lt;br/&gt;[`memory_order_consume`](/reference/atomic/memory_order.md) | acquireフェンス |
+| [`memory_order_acquire`](memory_order.md) | acquireフェンス |
+| [`memory_order_consume`](memory_order.md) | acquireフェンス(C++26で非推奨) |
| [`memory_order_release`](memory_order.md) | releaseフェンス |
| [`memory_order_acq_rel`](memory_order.md) | acquireフェンスとreleaseフェンスの両方 |
| [`memory_order_seq_cst`](memory_order.md) | acquireフェンスとreleaseフェンスの両方に加え、順序一貫性も与える |
@@ -149,3 +150,4 @@ int main()
- [Implementing Dekker&#39;s algorithm with Fences](https://www.justsoftwaresolutions.co.uk/threading/implementing_dekkers_algorithm_with_fences.html)
- [P3309R3 `constexpr atomic` and `atomic_ref`](https://open-std.org/jtc1/sc22/wg21/docs/papers/2024/p3309r3.html)
- C++26で`constexpr`に対応した
+- [P3475R2 Defang and deprecate memory_order::consume](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3475r2.pdf)
</code></pre></summary>
<author>
<name>yoh</name>
<email>[email protected]</email>
</author>
</entry>
<entry>
<title>kill_dependency -- C++26 P3475R2 consume操作の非推奨化(#1420)</title>
<link href="https://cpprefjp.github.io/reference/atomic/kill_dependency.html"/>
<id>1dd1b045fbbf312e5a9cd213fd542e789788699b:reference/atomic/kill_dependency.md</id>
<updated>2025-04-03T13:51:18+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/atomic/kill_dependency.md b/reference/atomic/kill_dependency.md
index 461a6a91d..f7ff021e3 100644
--- a/reference/atomic/kill_dependency.md
+++ b/reference/atomic/kill_dependency.md
@@ -3,16 +3,22 @@
* std[meta namespace]
* function template[meta id-type]
* cpp11[meta cpp]
+* cpp26deprecated[meta cpp]
```cpp
namespace std {
template &lt;class T&gt;
T kill_dependency(T y) noexcept; // (1) C++11
template &lt;class T&gt;
- constexpr T kill_dependency(T y) noexcept; // (1) C++26
+ constexpr T kill_dependency(T y) noexcept; // (1) C++26(非推奨)
}
```
+この関数は、C++26で非推奨となった。
+
+[`memory_order_consume`](memory_order.md)順序付けを実装したC++処理系は存在せず、本関数の代替機能も提供されない。
+
+
## 概要
データ依存性を切る。
@@ -126,3 +132,5 @@ T kill_dependency(T y) noexcept
- [(抄訳)N4215 `memory_order_consume`の利用と実装に向けて[§5-6のみ]](http://d.hatena.ne.jp/yohhoy/20141115/p1)
- [P3309R3 `constexpr atomic` and `atomic_ref`](https://open-std.org/jtc1/sc22/wg21/docs/papers/2024/p3309r3.html)
- C++26で`constexpr`に対応した
+- [P3475R2 Defang and deprecate memory_order::consume](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3475r2.pdf)
+ - C++26で`memory_order::consume`とあわせて`kill_dependency`関数を非推奨化。
</code></pre></summary>
<author>
<name>yoh</name>
<email>[email protected]</email>
</author>
</entry>
<entry>
<title>memory_order -- C++26 P3475R2 consume操作の非推奨化(#1420)</title>
<link href="https://cpprefjp.github.io/reference/atomic/memory_order.html"/>
<id>1dd1b045fbbf312e5a9cd213fd542e789788699b:reference/atomic/memory_order.md</id>
<updated>2025-04-03T13:51:18+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/atomic/memory_order.md b/reference/atomic/memory_order.md
index 3d9b32f90..8d8730bf6 100644
--- a/reference/atomic/memory_order.md
+++ b/reference/atomic/memory_order.md
@@ -22,8 +22,21 @@ namespace std {
inline constexpr memory_order memory_order_release = memory_order::release;
inline constexpr memory_order memory_order_acq_rel = memory_order::acq_rel;
inline constexpr memory_order memory_order_seq_cst = memory_order::seq_cst;
+
+ // C++26
+ enum class memory_order : unspecified {
+ relaxed = 0, acquire = 2,
+ release = 3, acq_rel = 4, seq_cst = 5
+ };
+ inline constexpr memory_order memory_order_relaxed = memory_order::relaxed;
+ inline constexpr memory_order memory_order_acquire = memory_order::acquire;
+ inline constexpr memory_order memory_order_release = memory_order::release;
+ inline constexpr memory_order memory_order_acq_rel = memory_order::acq_rel;
+ inline constexpr memory_order memory_order_seq_cst = memory_order::seq_cst;
}
```
+* unspecified[italic]
+
## 概要
コンパイラに許可されている最適化の一つに、「プログラムの意味を変えない限りにおいて、メモリアクセスの順番を変えたり、省略したりしてもよい」というものがある。また、マルチコアCPUにおいては、あるCPUコアによるメモリアクセスの順序が他のコアからも同じように見えるとは限らない。このような挙動はマルチスレッドプログラミングにおいて問題になることがある。
@@ -76,13 +89,18 @@ int main()
| 列挙値 | 説明 |
|--------|------|
| `relaxed` | スレッド間の順序付けの効果は一切持たない。 |
-| `consume` | acquire操作と似ているが、それより弱い順序付けでの読み込みを行うことを指示する。acquire操作は後続の全ての操作に対して順序付けを行うのに対し、consume操作は読み込まれた値に依存(ただし条件分岐による依存は除く)する操作のみに順序付けを保証する点が異なる。[store()](atomic/store.md)など、書き込みのみを行う操作に対しては指定できない。(仕様検討中のため、一時的に非推奨) |
+| `consume` | C++26で非推奨 |
| `acquire` | acquire操作としての読み込みを行うことを指示する。[store()](atomic/store.md)など、書き込みのみを行う操作に対しては指定できない。 |
| `release` | release操作としての書き込みを行うことを指示する。[load()](atomic/load.md)など、読み込みのみを行う操作に対しては指定できない。 |
| `acq_rel` | 読み込みと書き込みを同時に行う操作(Read-Modify-Write操作)に対してのみ指定することができ、acquireとreleaseを合わせた効果を持つ。 |
| `seq_cst` | acquire(読み込み操作の場合)、release(書き込み操作の場合)、acq_rel(Read-Modify-Write操作の場合)としての効果を持つ。さらに、同じseq_cstが指定されている他のatomic操作との間での順序一貫性も保証する。これは最も強い保証であり、標準のatomic操作におけるデフォルトのメモリオーダーとして使用される。「seq_cst」は「sequential consistency(順序一貫性)」を意味する。 |
+## 備考
+非推奨化された`consume`列挙値の挙動はacquire操作と似ているが、それより弱い順序付けでの読み込みを行うことを指示する。acquire操作は後続の全ての操作に対して順序付けを行うのに対し、consume操作は読み込まれた値に依存(ただし条件分岐による依存は除く)する操作のみに順序付けを保証する点が異なる。
+複雑なconsume操作を正しく実装するC++コンパイラは登場せず、より単純なacquire操作として扱われていた。C++20では仕様再検討に伴う一時的な利用回避が宣言され、最終的には役に立たないとの判断からC++26で非推奨となった。
+
+
## バージョン
### 言語
- C++11
@@ -102,5 +120,8 @@ int main()
- [N1525: Memory-Order Rationale](http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1525.htm)
- [The Purpose of memory_order_consume in C++11](http://preshing.com/20140709/the-purpose-of-memory_order_consume-in-cpp11/)
- [(抄訳)N4215 `memory_order_consume`の利用と実装に向けて[§5-6のみ]](http://d.hatena.ne.jp/yohhoy/20141115/p1)
-- [P0371R1 Temporarily discourage `memory_order_consume`](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0371r1.html)
- [P0439R0 Make `std::memory_order` a scoped enumeration](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0439r0.html)
+ - C++20で`memory_order`をスコープ付き列挙型に変更。
+- [P0371R1 Temporarily discourage `memory_order_consume`](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0371r1.html)
+- [P3475R2 Defang and deprecate memory_order::consume](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3475r2.pdf)
+ - C++26で`memory_order::consume`列挙子を非推奨化。
</code></pre></summary>
<author>
<name>yoh</name>
<email>[email protected]</email>
</author>
</entry>
<entry>
<title>C++ (将来) -- Update introduction of future.md</title>
<link href="https://cpprefjp.github.io/lang/future.html"/>
<id>f6f1289f6481a5ab9bf8edba03fe9021f36127f2:lang/future.md</id>
<updated>2025-03-27T21:46:35+09:00</updated>
<content type="html"><h1 itemprop="name"><span class="token">C++ (将来)</span></h1>
<div itemprop="articleBody"><h2>概要</h2>
<p>ここでは、将来のC++で検討されているが、C++のバージョンが定まっていない機能を紹介する。</p>
<p>cpprefjpでは基本的に<a href="../start_editing.html">Working Draftに採択された機能のみを解説している</a>ため、このページに項目が積極的に追加されることはない。</p>
<p>しかし、稀ではあるが、ある提案が一度は採択されたにもかかわらず後に取り下げられることがある。例えば、C++11で一度採択されたあと取り下げられ、最終的にC++20で採択された<a href="cpp20/concepts.html">コンセプト</a>がそうである。</p>
<p>そのような提案がすでにcpprefjpで解説されている場合、その記事をここへ移動する。そして、将来のC++において再び採択されれば、そのバージョンへ記事を移動する。</p>
<h2>言語機能</h2>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="future/contract-based_programming.html">契約に基づくプログラミング</a></td>
<td>事前条件、事後条件、表明を宣言する新たな属性構文を追加</td>
</tr>
</tbody>
</table>
<h2>ライブラリ</h2>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>ヘッダ</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><code><a href="../reference/contract.html">&lt;contract&gt;</a></code></td>
<td>契約違反のハンドリング</td>
</tr>
</tbody>
</table></div></content>
<author>
<name>Tetsuro Matsumura</name>
<email>[email protected]</email>
</author>
</entry>
<entry>
<title>C++26 -- C++26: 2025-03 mailingのライブラリ機能を記載 #1415</title>
<link href="https://cpprefjp.github.io/lang/cpp26.html"/>
<id>5b5528052dc7510d897b7c34fbfdd672dac5f997:lang/cpp26.md</id>
<updated>2025-03-26T20:31:18+09:00</updated>
<content type="html"><h1 itemprop="name"><span class="token">C++26</span></h1>
<div itemprop="articleBody"><h2>概要</h2>
<p>C++26とは、2026年中に改訂される予定の、C++バージョンの通称である。</p>
<p>このバージョンは、策定中のためC++2cと呼ばれることがある。「(2020年代の3つ目のバージョンが) 202c年にリリースされる」という伏せ字として「c」が使われているが、3年周期に次のバージョンが策定されることが決まっているため、伏せ字になっている年数がずれることはない。</p>
<h2>言語機能</h2>
<h3>変数</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/static_storage_for_braced_initializers.md.nolink"><code>std::initializer_list</code>の配列を静的ストレージに配置する</a></td>
<td><code>std::vector v = {1, 2, 3};</code>のような初期化で初期化子リストを静的ストレージに配置することで無駄なコピーをなくす</td>
</tr>
<tr>
<td><a href="cpp26/nice_placeholder_with_no_name.html">宣言のみで使用しない変数の名前として<code>_</code>をサポート</a></td>
<td>変数名<code>_</code>は暗黙で<code>[[maybe_unused]]</code>が指定される</td>
</tr>
<tr>
<td><a href="cpp26/remove_deprecated_arithmetic_conversion_on_enumerations.html">非推奨となっていた列挙型の算術変換を削除</a></td>
<td>C++20から非推奨となっていた列挙値への算術演算で算術型に暗黙変換される仕様を削除</td>
</tr>
<tr>
<td><a href="cpp26/deleting_a_pointer_to_an_incomplete_type_should_be_ill-formed.md.nolink">不完全型へのポインタに対する<code>delete</code>を不適格とする</a></td>
<td>未定義動作を引き起こす操作をコンパイルエラーとする</td>
</tr>
<tr>
<td><a href="cpp26/disallow_binding_a_returned_glvalue_to_a_temporary.md.nolink">返却された左辺値から暗黙変換された一時オブジェクトが参照に束縛されることを禁止する</a></td>
<td>寿命切れの変数によって引き起こされるバグを防止する</td>
</tr>
<tr>
<td><a href="cpp26/clarifying_rules_for_brace_elision_in_aggregate_initialization.md.nolink">要素数不明の配列を集成体初期化する規則を明確化</a></td>
<td>配列要素の集成体初期化で<code>{}</code>が省略された場合の矛盾していた規定を修正</td>
</tr>
<tr>
<td><a href="cpp26/erroneous_behavior_for_uninitialized_reads.html">未初期化変数の読み取りをエラー性動作とする</a></td>
<td>初期化されていない自動変数の読み取りの安全性を規定する</td>
</tr>
<tr>
<td><a href="cpp26/structured_bindings_can_introduce_a_pack.md.nolink">構造化束縛でパックを導入できるようにする</a></td>
<td>タプルを分解する際に複数の変数をパックとして宣言できるようにする。<code>auto [a, ...xs] = f();</code></td>
</tr>
</tbody>
</table>
<h3>文字列</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/making_non-encodable_string_literals_ill-formed.md.nolink">文字列リテラルの文字エンコーディング失敗を不適格とする</a></td>
<td>文字列リテラルのエンコーディング時に文字表現が失われる場合にコンパイルエラーにする</td>
</tr>
<tr>
<td><a href="cpp26/unevaluated_strings.md.nolink">コンパイル時にのみ使用される文字列の扱いを明確化</a></td>
<td><code>static_assert</code>や<code>[[deprecated]]</code>などで使用されるコンパイル時の文字列について、文字コードの指定を禁止し、実行時エンコーディングが行われないことを規定</td>
</tr>
</tbody>
</table>
<h3>分岐・ループ</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/structured_binding_declaration_as_a_condition.html">条件式での構造化束縛の使用を許可</a></td>
<td>式全体を<code>bool</code>値に変換できる場合に条件式で構造化束縛を使用できることとする</td>
</tr>
<tr>
<td><a href="cpp26/trivial_infinite_loops_are_not_undefined_behavior.md.nolink">自明な無限ループは未定義動作ではないと規定</a></td>
<td>並行プログラムの進行保証などを考慮して無限ループを未定義動作ではないものとする</td>
</tr>
</tbody>
</table>
<h3>関数</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/delete_reason.html">関数宣言を削除する理由を指定できるようにする</a></td>
<td><code>f() = delete("reason");</code></td>
</tr>
<tr>
<td><a href="cpp26/contracts.md.nolink">契約プログラミングをサポートする</a></td>
<td>関数の事前条件、事後条件、不変条件を記述できるようにする</td>
</tr>
</tbody>
</table>
<h3>クラス</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/abolish_the_term_converting_constructor.md.nolink">変換コンストラクタという用語を廃止する</a></td>
<td>規格上で「<code>explicit</code>ではないコンストラクタ」という意味で定義されていたあまり使われない用語「変換コンストラクタ」を削除する</td>
</tr>
<tr>
<td><a href="cpp26/trivial_unions.md.nolink">共用体をトリビアルに未初期化できるようにする</a></td>
<td><code>constexpr</code>での<code>union U { T storage[N]; };</code>を許可し、未初期化にできるようにする</td>
</tr>
<tr>
<td><a href="cpp26/trivial_relocatability.md.nolink">トリビアルな再配置</a></td>
<td>ムーブ構築と破棄のためにビット単位のコピーとデストラクタ評価が必要になる型のオブジェクトを再配置するメカニズムを導入する</td>
</tr>
</tbody>
</table>
<h3>属性</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/on_the_ignorability_of_standard_attributes.md.nolink">属性の無視性を見直し</a></td>
<td>構文として適格な属性のみを無視できるようにし、そうでない属性の使用を<a class="cpprefjp-defined-word">不適格</a>とする</td>
</tr>
<tr>
<td><a href="cpp26/attributes_for_structured_bindings.html">構造化束縛への属性を許可</a></td>
<td><code>auto [a, b [[maybe_unused]], c] = f();</code>のように構造化束縛の要素に対して属性を付加できるようにする</td>
</tr>
</tbody>
</table>
<h3>テンプレート</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/pack_indexing.md.nolink">パラメータパックへのインデックスアクセスを許可</a></td>
<td>可変引数テンプレートのパラメータパックに添字アクセスできるようにする</td>
</tr>
<tr>
<td><a href="cpp26/ordering_of_constraints_involving_fold_expressions.md.nolink">制約式内での畳み込み式の順序付け</a></td>
<td>畳み込み式では全体ではなく個別の制約を原子制約式として扱う</td>
</tr>
<tr>
<td><a href="cpp26/variadic_friends.md.nolink">可変引数テンプレートで<code>friend</code>宣言をできるようにする</a></td>
<td>クラステンプレートの可変引数テンプレートでまとめて<code>friend</code>宣言できるようにする</td>
</tr>
<tr>
<td><a href="cpp26/concept_and_variable-template_template-parameters.md.nolink">コンセプトと変数テンプレートにテンプレートテンプレートパラメータのサポートを追加</a></td>
<td>テンプレート引数をあとで指定するテンプレートテンプレートパラメータを、コンセプトと変数テンプレートでも使用できるようにする</td>
</tr>
</tbody>
</table>
<h3>定数式</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/constexpr_cast_from_voidptr.md.nolink">定数式での<code>void*</code>からポインタ型へのキャストを許可</a></td>
<td>型消去のために<code>void*</code>からポインタ型へのキャストを許可する</td>
</tr>
<tr>
<td><a href="cpp26/user-generated_static_assert_messages.html"><code>static_assert</code>の診断メッセージにユーザーが生成した文字列の指定を許可</a></td>
<td><code>constexpr</code>な<code>S.size()</code>と<code>S.data()</code>メンバ関数をもつオブジェクトをコンパイル時文字列として指定できるようにする</td>
</tr>
<tr>
<td><a href="cpp26/constexpr_placement_new.md.nolink"><code>constexpr</code>配置<code>new</code></a></td>
<td>定数式の文脈での配置<code>new</code>を許可</td>
</tr>
<tr>
<td><a href="cpp26/constexpr_structured_bindings_and_references_to_constexpr_variables.md.nolink"><code>constexpr</code>構造化束縛の許可と、定数式への参照を定数式とする</a></td>
<td>定数式に対する構造化束縛を許可し、関連する定数式への参照が定数式になるようにする</td>
</tr>
<tr>
<td><a href="cpp26/allowing_exception_throwing_in_constant-evaluation.md.nolink">定数評価での例外送出を許可</a></td>
<td>定数式の文脈での例外の送出と捕捉を許可</td>
</tr>
</tbody>
</table>
<h3>プリプロセッサ</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/embed.md.nolink">ファイルを読み込む<code>#embed</code>命令を追加</a></td>
<td>バイナリファイルをインクルードするメカニズム。<code>#include</code>とちがって読み出しサイズなどの柔軟な指定ができる</td>
</tr>
</tbody>
</table>
<h3>ソースコード</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/add_atsign_dollar_graveaccent_to_the_basic_character_set.html">基本文字集合に@、$、`を追加</a></td>
<td>C言語との互換性のためにこれらの文字を基本文字集合に追加</td>
</tr>
</tbody>
</table>
<h3>モジュール</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/module_declarations_shouldnt_be_macros.md.nolink">モジュール宣言でのモジュール名のマクロ展開を禁止する</a></td>
<td><code>export module MACRO_NAME;</code>を禁止</td>
</tr>
</tbody>
</table>
<h3>機能の非推奨化</h3>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>言語機能</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="cpp26/remove_deprecated_array_comparisons.md.nolink">非推奨だった配列の比較を削除</a></td>
<td>C++20で非推奨となっていた配列比較を削除</td>
</tr>
<tr>
<td><a href="cpp26/the_oxford_variadic_comma.md.nolink">先行するカンマのない省略記号を非推奨化</a></td>
<td><code>void f(int, ...);</code>はOK。<code>void f(int...);</code>は非推奨</td>
</tr>
</tbody>
</table>
<h2>ライブラリ更新の概要</h2>
<h3>新ライブラリ</h3>
<ul>
<li>文字列エンコーディングを識別するライブラリとして、<code><a href="../reference/text_encoding.md.nolink">&lt;text_encoding&gt;</a></code>を追加</li>
<li>要素のメモリ位置が安定するシーケンスコンテナのライブラリとして<code><a href="../reference/hive.md.nolink">&lt;hive&gt;</a></code>を追加</li>
<li>並行処理におけるデータの参照・更新を行うRCU (Read Copy Update) のライブラリとして、<code><a href="../reference/rcu.html">&lt;rcu&gt;</a></code>を追加</li>
<li>並行処理において参照中のデータが更新されないよう保護するハザードポインタのライブラリとして、<code><a href="../reference/hazard_pointer.md.nolink">&lt;hazard_pointer&gt;</a></code>を追加</li>
<li>データ並列ライブラリとして、<code><a href="../reference/simd.md.nolink">&lt;simd&gt;</a></code>を追加</li>
<li>デバッグサポートのライブラリとして<code><a href="../reference/debugging.html">&lt;debugging&gt;</a></code>を追加</li>
<li>線形代数ライブラリとして<code><a href="../reference/linalg.html">&lt;linalg&gt;</a></code>を追加</li>
<li>コンパイル時に容量を固定する可変長配列クラスのライブラリとして<code><a href="../reference/inplace_vector.md.nolink">&lt;inplace_vector&gt;</a></code>を追加</li>
<li>C23の互換ライブラリとして、ビット操作ライブラリ<code><a href="../reference/stdbit.h.md.nolink">&lt;stdbit.h&gt;</a></code>と、検査付き整数演算ライブラリ<code><a href="../reference/stdckdint.h.md.nolink">&lt;stdckdint.h&gt;</a></code>を追加。<code>&lt;cstd…&gt;</code>形式のライブラリは追加されない</li>
</ul>
<h3>全体</h3>
<ul>
<li>標準ライブラリに付加された、戻り値を無視した際に警告を出力する<a href="cpp17/nodiscard.html"><code>[[nodiscard]]</code>属性</a>を削除</li>
</ul>
<h3>コンテナ</h3>
<ul>
<li><code><a href="../reference/mdspan/mdspan.html">std::mdspan</a></code>から部分ビューを取り出す<code><a href="../reference/mdspan/submdspan.html">std::submdspan()</a></code>を追加</li>
<li><code><a href="../reference/mdspan/mdspan.html">std::mdspan</a></code>に対する<code><a href="../reference/mdspan/extents.html">std::dextents</a></code>指定の冗長さを解決する<code><a href="../reference/mdspan/extents.html">std::dims</a></code>を追加</li>
<li><code><a href="../reference/mdspan/mdspan.html">std::mdspan</a></code>のレイアウトとして、<code><a href="../reference/mdspan/layout_left_padded.html">std::layout_left_padded</a></code>と<code><a href="../reference/mdspan/layout_right_padded.html">std::layout_right_padded</a></code>を追加</li>
<li><code><a href="../reference/mdspan.html">&lt;mdspan&gt;</a></code>に、要素アクセスにアライメント保証を与える<code><a href="../reference/mdspan/aligned_accessor.html">std::aligned_accessor</a></code>を追加</li>
<li><code><a href="../reference/span/span.html">std::span</a></code>に、以下を追加<ul>
<li><code><a href="../reference/initializer_list/initializer_list.html">std::initializer_list</a></code>をとるコンストラクタ</li>
<li>インデックスアクセスのための<code><a href="../reference/span/span/at.html">at()</a></code>メンバ関数</li>
</ul>
</li>
<li>連想コンテナの以下のメンバ関数に、一時オブジェクトが生成されるコストを抑える拡張を追加<ul>
<li><code><a href="../reference/map/map.html">std::map</a></code><ul>
<li><code><a href="../reference/map/map/op_at.html">operator[]</a></code></li>
<li><code><a href="../reference/map/map/at.html">at()</a></code></li>
<li><code><a href="../reference/map/map/try_emplace.html">try_emplace()</a></code></li>
<li><code><a href="../reference/map/map/insert_or_assign.html">insert_or_assign()</a></code></li>
</ul>
</li>
<li><code><a href="../reference/set/set.html">std::set</a></code><ul>
<li><code><a href="../reference/set/set/insert.html">insert()</a></code></li>
</ul>
</li>
<li><code><a href="../reference/unordered_map/unordered_map.html">std::unordered_map</a></code><ul>
<li><code><a href="../reference/unordered_map/unordered_map/op_at.html">operator[]</a></code></li>
<li><code><a href="../reference/unordered_map/unordered_map/at.html">at()</a></code></li>
<li><code><a href="../reference/unordered_map/unordered_map/try_emplace.html">try_emplace()</a></code></li>
<li><code><a href="../reference/unordered_map/unordered_map/insert_or_assign.html">insert_or_assign()</a></code></li>
<li><code><a href="../reference/unordered_map/unordered_map/bucket.html">bucket()</a></code></li>
</ul>
</li>
<li><code><a href="../reference/unordered_map/unordered_multimap.html">std::unordered_multimap</a></code><ul>
<li><code><a href="../reference/unordered_map/unordered_multimap/bucket.html">bucket()</a></code></li>
</ul>
</li>
<li><code><a href="../reference/unordered_set/unordered_set.html">std::unordered_set</a></code><ul>
<li><code><a href="../reference/unordered_set/unordered_set/insert.html">insert()</a></code></li>
<li><code><a href="../reference/unordered_set/unordered_set/bucket.html">bucket()</a></code></li>
</ul>
</li>
<li><code><a href="../reference/unordered_set/unordered_multiset.html">std::unordered_multiset</a></code><ul>
<li><code><a href="../reference/unordered_set/unordered_multiset/bucket.html">bucket()</a></code></li>
</ul>
</li>
</ul>
</li>
<li><code><a href="../reference/span/span.html">std::span</a></code>と<code><a href="../reference/mdspan/mdspan.html">std::mdspan</a></code>の推論補助を改善</li>
<li><code><a href="../reference/ranges/concat_view.html">std::views::concat</a></code>を追加</li>
<li><code><a href="../reference/ranges/cache_latest.md.nolink">std::views::cache_latest</a></code>を追加</li>
<li><code><a href="../reference/ranges/to_input_view.md.nolink">std::views::to_input</a></code>を追加。書き換えできない入力専用の値に変換する</li>
<li>Range関係の、償却定数時間での要素追加を行う機能を追加<ul>
<li>各viewクラスに<code>reserve_hint()</code>メンバ関数を追加</li>
<li><code><a href="../reference/ranges/reserve_hint.md.nolink">std::ranges::reserve_hint()</a></code>関数を追加</li>
<li><code><a href="../reference/ranges/approximately_sized_range.md.nolink">std::ranges::approximately_sized_range</a></code>コンセプトを追加</li>
</ul>
</li>
<li>連続イテレータのコンセプト<code><a href="../reference/iterator/contiguous_iterator.html">contiguous_iterator</a></code>に、ポインタに変換できることを要件として追加</li>
<li>以下のコンテナを<code>constexpr</code>に対応<ul>
<li><code><a href="../reference/deque/deque.html">std::deque</a></code></li>
<li><code><a href="../reference/forward_list/forward_list.html">std::forward_list</a></code></li>
<li><code><a href="../reference/list/list.html">std::list</a></code></li>
<li><code><a href="../reference/map/map.html">std::map</a></code> (ただし<code><a href="../reference/node_handle/node_handle.html">node_handle</a>::<a href="../reference/node_handle/node_handle/key.html">key()</a></code>を使用すると未定義動作)</li>
<li><code><a href="../reference/map/multimap.html">std::multimap</a></code> (ただし<code><a href="../reference/node_handle/node_handle.html">node_handle</a>::<a href="../reference/node_handle/node_handle/key.html">key()</a></code>を使用すると未定義動作)</li>
<li><code><a href="../reference/set/set.html">std::set</a></code></li>
<li><code><a href="../reference/set/multiset.html">std::multiset</a></code></li>
<li><code><a href="../reference/unordered_map/unordered_map.html">std::unordered_map</a></code> (ハッシュ関数のカスタム化が必要) (ただし<code><a href="../reference/node_handle/node_handle.html">node_handle</a>::<a href="../reference/node_handle/node_handle/key.html">key()</a></code>を使用すると未定義動作)</li>
<li><code><a href="../reference/unordered_map/unordered_multimap.html">std::unordered_multimap</a></code> (ハッシュ関数のカスタム化が必要) (ただし<code><a href="../reference/node_handle/node_handle.html">node_handle</a>::<a href="../reference/node_handle/node_handle/key.html">key()</a></code>を使用すると未定義動作)</li>
<li><code><a href="../reference/unordered_set/unordered_set.html">std::unordered_set</a></code> (ハッシュ関数のカスタム化が必要)</li>
<li><code><a href="../reference/unordered_set/unordered_multiset.html">std::unordered_multiset</a></code> (ハッシュ関数のカスタム化が必要)</li>
<li><code><a href="../reference/flat_map/flat_map.html">std::flat_map</a></code></li>
<li><code><a href="../reference/flat_map/flat_multimap.html">std::flat_multimap</a></code></li>
<li><code><a href="../reference/flat_set/flat_set.html">std::flat_set</a></code></li>
<li><code><a href="../reference/flat_set/flat_multiset.html">std::flat_multiset</a></code></li>
<li><code><a href="../reference/queue/queue.html">std::queue</a></code></li>
<li><code><a href="../reference/queue/priority_queue.html">std::priority_queue</a></code></li>
<li><code><a href="../reference/stack/stack.html">std::stack</a></code></li>
</ul>
</li>
</ul>
<h3>アルゴリズム</h3>
<ul>
<li><code><a href="../reference/algorithm.html">&lt;algorithm&gt;</a></code>の以下のアルゴリズムを<code>constexpr</code>に対応<ul>
<li><code><a href="../reference/algorithm/stable_sort.html">std::stable_sort()</a></code> / <code><a href="../reference/algorithm/ranges_stable_sort.html">std::ranges::stable_sort()</a></code></li>
<li><code><a href="../reference/algorithm/stable_partition.html">std::stable_partition()</a></code> / <code><a href="../reference/algorithm/ranges_stable_partition.html">std::ranges::stable_partition()</a></code></li>
<li><code><a href="../reference/algorithm/inplace_merge.html">std::inplace_merge()</a></code> / <code><a href="../reference/algorithm/ranges_inplace_merge.html">std::ranges::inplace_merge()</a></code></li>
</ul>
</li>
<li><code><a href="../reference/memory.html">&lt;memory&gt;</a></code>の以下のアルゴリズムを<code>constexpr</code>に対応<ul>
<li><code><a href="../reference/memory/uninitialized_default_construct.html">std::uninitialized_default_construct()</a></code> / <code><a href="../reference/memory/ranges_uninitialized_default_construct.html">std::ranges::uninitialized_default_construct()</a></code></li>
<li><code><a href="../reference/memory/uninitialized_default_construct_n.html">std::uninitialized_default_construct_n()</a></code> / <code><a href="../reference/memory/ranges_uninitialized_default_construct_n.html">std::ranges::uninitialized_default_construct_n()</a></code></li>
<li><code><a href="../reference/memory/uninitialized_value_construct.html">std::uninitialized_value_construct()</a></code> / <code><a href="../reference/memory/ranges_uninitialized_value_construct.html">std::ranges::uninitialized_value_construct()</a></code></li>
<li><code><a href="../reference/memory/uninitialized_value_construct_n.html">std::uninitialized_value_construct_n()</a></code> / <code><a href="../reference/memory/ranges_uninitialized_value_construct_n.html">std::ranges::uninitialized_value_construct_n()</a></code></li>
<li><code><a href="../reference/memory/uninitialized_copy.html">std::uninitialized_copy()</a></code> / <code><a href="../reference/memory/ranges_uninitialized_copy.html">std::ranges::uninitialized_copy()</a></code></li>
<li><code><a href="../reference/memory/uninitialized_copy_n.html">std::uninitialized_copy_n()</a></code> / <code><a href="../reference/memory/ranges_uninitialized_copy_n.html">std::ranges::uninitialized_copy_n()</a></code></li>
<li><code><a href="../reference/memory/uninitialized_move.html">std::uninitialized_move()</a></code> / <code><a href="../reference/memory/ranges_uninitialized_move.html">std::ranges::uninitialized_move()</a></code></li>
<li><code><a href="../reference/memory/uninitialized_move_n.html">std::uninitialized_move_n()</a></code> / <code><a href="../reference/memory/ranges_uninitialized_move_n.html">std::ranges::uninitialized_move_n()</a></code></li>
<li><code><a href="../reference/memory/uninitialized_fill.html">std::uninitialized_fill()</a></code> / <code><a href="../reference/memory/ranges_uninitialized_fill.html">std::ranges::uninitialized_fill()</a></code></li>
<li><code><a href="../reference/memory/uninitialized_fill_n.html">std::uninitialized_fill_n()</a></code> / <code><a href="../reference/memory/ranges_uninitialized_fill_n.html">std::ranges::uninitialized_fill_n()</a></code></li>
</ul>
</li>
<li>Rangeアルゴリズムが完全型を要求しないようにするため、<code><a href="../reference/iterator/projected.html">std::projected</a></code>の制約を緩和</li>
<li>以下のアルゴリズムに、値を波カッコ初期化で渡せるよう制約を追加<ul>
<li><code>std::erase()</code><ul>
<li><code><a href="../reference/string/basic_string.html">std::basic_string</a></code>版<code><a href="../reference/string/basic_string/erase_free.html">std::erase()</a></code></li>
<li><code><a href="../reference/deque/deque.html">std::deque</a></code>版<code><a href="../reference/deque/deque/erase_free.html">std::erase()</a></code></li>
<li><code><a href="../reference/forward_list/forward_list.html">std::forward_list</a></code>版<code><a href="../reference/forward_list/forward_list/erase_free.html">std::erase()</a></code></li>
<li><code><a href="../reference/list/list.html">std::list</a></code>版<code><a href="../reference/list/list/erase_free.html">std::erase()</a></code></li>
<li><code><a href="../reference/vector/vector.html">std::vector</a></code>版<code><a href="../reference/vector/vector/erase_free.html">std::erase()</a></code></li>
</ul>
</li>
<li><code><a href="../reference/algorithm/find.html">std::find()</a></code>と<code><a href="../reference/algorithm/ranges_find.html">std::ranges::find()</a></code></li>
<li><code><a href="../reference/algorithm/ranges_find_last.html">std::ranges::find_last()</a></code></li>
<li><code><a href="../reference/algorithm/count.html">std::count()</a></code>と<code><a href="../reference/algorithm/ranges_count.html">std::ranges::count()</a></code></li>
<li><code><a href="../reference/algorithm/search_n.html">std::search_n()</a></code>と<code><a href="../reference/algorithm/ranges_search_n.html">std::ranges::search_n()</a></code></li>
<li><code><a href="../reference/algorithm/replace.html">std::replace()</a></code>と<code><a href="../reference/algorithm/replace.html">std::ranges::replace()</a></code></li>
<li><code><a href="../reference/algorithm/replace_if.html">std::replace_if()</a></code>と<code><a href="../reference/algorithm/replace_if.html">std::ranges::replace_if()</a></code></li>
<li><code><a href="../reference/algorithm/replace_copy.html">std::ranges::replace_copy()</a></code></li>
<li><code><a href="../reference/algorithm/replace_copy_if.html">std::replace_copy_if()</a></code>と<code><a href="../reference/algorithm/replace_copy_if.html">std::ranges::replace_copy_if()</a></code></li>
<li><code><a href="../reference/algorithm/fill.html">std::fill()</a></code>と<code><a href="../reference/algorithm/ranges_fill.html">std::ranges::fill()</a></code></li>
<li><code><a href="../reference/algorithm/fill_n.html">std::fill_n()</a></code>と<code><a href="../reference/algorithm/ranges_fill_n.html">std::ranges::fill_n()</a></code></li>
<li><code><a href="../reference/algorithm/remove.html">std::remove()</a></code>と<code><a href="../reference/algorithm/ranges_remove.html">std::ranges::remove()</a></code></li>
<li><code><a href="../reference/algorithm/remove_copy.html">std::remove_copy()</a></code>と<code><a href="../reference/algorithm/ranges_remove_copy.html">std::ranges::remove_copy()</a></code></li>
<li><code><a href="../reference/algorithm/lower_bound.html">std::lower_bound()</a></code>と<code><a href="../reference/algorithm/ranges_lower_bound.html">std::ranges::lower_bound()</a></code></li>
<li><code><a href="../reference/algorithm/upper_bound.html">std::upper_bound()</a></code>と<code><a href="../reference/algorithm/ranges_upper_bound.html">std::ranges::upper_bound()</a></code></li>
<li><code><a href="../reference/algorithm/equal_range.html">std::equal_range()</a></code>と<code><a href="../reference/algorithm/ranges_equal_range.html">std::ranges::equal_range()</a></code></li>
<li><code><a href="../reference/algorithm/binary_search.html">std::binary_search()</a></code>と<code><a href="../reference/algorithm/ranges_binary_search.html">std::ranges::binary_search()</a></code></li>
<li><code><a href="../reference/algorithm/ranges_fold_left.html">std::ranges::fold_left()</a></code></li>
<li><code><a href="../reference/algorithm/ranges_fold_right.html">std::ranges::fold_right()</a></code></li>
<li><code><a href="../reference/algorithm/ranges_contains.html">std::ranges::contains()</a></code></li>
</ul>
</li>
</ul>
<h3>関数オブジェクト</h3>
<ul>
<li>所有権を保持しない<code><a href="../reference/functional/function.html">std::function</a></code>として、<code><a href="../reference/functional.html">&lt;functional&gt;</a></code>に<code><a href="../reference/functional/function_ref.html">std::function_ref</a></code>クラスを追加</li>
<li><code><a href="../reference/functional/move_only_function.html">std::move_only_function</a></code>のコピー可能版として、<code><a href="../reference/functional.html">&lt;functional&gt;</a></code>に<code><a href="../reference/functional/copyable_function.html">std::copyable_function</a></code>クラスを追加</li>
<li><code><a href="../reference/functional/bind_front.html">std::bind_front()</a></code>と<code><a href="../reference/functional/bind_back.html">std::bind_back()</a></code>に、非型テンプレート引数として関数を指定するオーバーロードを追加<ul>
<li>関連して、非型テンプレート引数の関数オブジェクトを反転させられるよう、<code><a href="../reference/functional/not_fn.html">not_fn()</a></code>に非型テンプレート引数版のオーバーロードを追加</li>
</ul>
</li>
<li><code><a href="../reference/functional/reference_wrapper.html">std::reference_wrapper</a></code>に、比較演算子<code><a href="../reference/functional/reference_wrapper/op_equal.html">==</a></code>と<code><a href="../reference/functional/reference_wrapper/op_compare_3way.html">&lt;=&gt;</a></code>を追加</li>
</ul>
<h3>文字列</h3>
<ul>
<li><code><a href="../reference/charconv.html">&lt;charconv&gt;</a></code>の変換結果<code><a href="../reference/charconv/to_chars_result.html">std::to_chars_result</a></code>と<code><a href="../reference/charconv/from_chars_result.html">std::from_chars_result</a></code>に、変換が正しく完了したかを判定する<code>operator bool</code>を追加</li>
<li><code><a href="../reference/string/to_string.html">std::to_string()</a></code>の仕様が<code>std::sprintf()</code>で説明されていたが、<code><a href="../reference/format/format.html">std::format()</a></code>で定義するよう仕様を変更</li>
<li><code><a href="../reference/sstream/basic_istringstream.html">std::basic_istringstream</a></code>および<code><a href="../reference/sstream/basic_ostringstream.html">std::basic_ostringstream</a></code>のコンストラクタおよび<code>str()</code>メンバ関数に、<code><a href="../reference/string_view/basic_string_view.html">std::basic_string_view</a></code>を受け取るオーバーロードを追加</li>
<li><code><a href="../reference/format/format.html">std::format()</a></code>に、以下の改善を導入<ul>
<li>ポインタ出力のサポートを追加</li>
<li>幅と精度を動的に指定した場合でも型の検証がコンパイル時に行われるよう仕様を見直し</li>
<li>コンパイル時の書式文字列だけでなく、実行時の書式文字列を渡せるよう仕様修正</li>
</ul>
</li>
<li><code><a href="../reference/string/basic_string.html">std::basic_string</a></code>と<code><a href="../reference/string_view/basic_string_view.html">std::basic_string_view</a></code>を<code><a href="../reference/string/basic_string.html">std::basic_string</a></code>として連結させる<code>operator+</code>を追加</li>
</ul>
<h3>ファイル</h3>
<ul>
<li>ファイルのネイティブハンドルを取得できるよう、<code><a href="../reference/fstream/basic_filebuf.html">std::basic_filebuf</a></code>、<code><a href="../reference/fstream/basic_ifstream.html">std::basic_ifstream</a></code>、<code><a href="../reference/fstream/basic_ofstream.html">std::basic_ofstream</a></code>、<code><a href="../reference/fstream/basic_fstream.html">std::basic_fstream</a></code>クラスに、以下のメンバを追加<ul>
<li><code>native_handle_type</code>型</li>
<li><code>native_handle()</code></li>
</ul>
</li>
<li><code><a href="../reference/filesystem/path.html">std::filesystem::path</a></code>に、文字列フォーマットのサポートを追加</li>
</ul>
<h3>入出力</h3>
<ul>
<li><code><a href="../reference/print/print.html">std::print()</a></code>と<code><a href="../reference/print/println.html">std::println()</a></code>に、ロックを取得せず高速に書き出す最適化を許可</li>
<li><code><a href="../reference/print/println.html">std::println()</a></code>に、改行のみを出力するオーバーロードを追加</li>
<li><code><a href="../reference/print/print.html">std::print()</a></code>と<code><a href="../reference/print/println.html">std::println()</a></code>をより高速にできる最適化が可能か判定する<code><a href="../reference/format/enable_nonlocking_formatter_optimization.html">std::enable_nonlocking_formatter_optimization</a></code>を追加</li>
</ul>
<h3>並行・並列・非同期処理</h3>
<ul>
<li><code><a href="../reference/execution.html">&lt;execution&gt;</a></code>に汎用的な非同期実行を管理するフレームワークを追加</li>
<li><code><a href="../reference/atomic/atomic.html">std::atomic</a></code>オブジェクトに対する2つの値の最大値・最小値を取得する関数として、メンバ関数<code><a href="../reference/atomic/atomic/fetch_max.html">fetch_max()</a></code>と<code><a href="../reference/atomic/atomic/fetch_min.html">fetch_min()</a></code>、非メンバ関数として<code><a href="../reference/atomic/atomic_fetch_max.html">std::atomic_fetch_max</a></code>、<code><a href="../reference/atomic/atomic_fetch_max_explicit.html">std::atomic_fetch_max_explicit</a></code>、<code><a href="../reference/atomic/atomic_fetch_min.html">std::atomic_fetch_min</a></code>、<code><a href="../reference/atomic/atomic_fetch_min_explicit.html">std::atomic_fetch_min_explicit</a></code>を追加</li>
<li><code><a href="../reference/atomic/atomic_ref.html">std::atomic_ref</a></code>クラスに、参照するオブジェクトのアドレスを取得する<code><a href="../reference/atomic/atomic_ref/address.html">address()</a></code>メンバ関数を追加</li>
<li><code><a href="../reference/atomic/atomic.html">std::atomic</a></code>クラスのテンプレートパラメータとしてCV修飾された型を禁止</li>
<li><code><a href="../reference/atomic/atomic_ref.html">std::atomic_ref</a></code>クラスのテンプレートパラメータとして、CV修飾された型を受け取れるようにした (内部でCV修飾が外される)</li>
<li><code><a href="../reference/atomic.html">&lt;atomic&gt;</a></code>ライブラリのアトミック操作を<code>constexpr</code>対応</li>
</ul>
<h3>スマートポインタ・メモリ関連</h3>
<ul>
<li>動的確保したオブジェクトに値の意味論をもたせてディープコピーさせるユーティリティクラスとして、<code><a href="../reference/memory.html">&lt;memory&gt;</a></code>に<code><a href="../reference/memory/indirect.md.nolink">std::indirect</a></code>クラスと<code><a href="../reference/memory/polymorphic.md.nolink">std::polymorphic</a></code>クラスを追加</li>
<li><code><a href="../reference/memory/weak_ptr.html">std::weak_ptr</a></code>を非順序連想コンテナのキーとして使用できるよう、<code><a href="../reference/memory.html">&lt;memory&gt;</a></code>に所有権ベースのハッシュ値を取得する関数オブジェクト<code><a href="../reference/memory/owner_hash.md.nolink">std::owner_hash</a></code>、および所有権ベースの等値比較を行う関数オブジェクト<code><a href="../reference/memory/owner_equal.md.nolink">std::owner_equal</a></code>を追加<ul>
<li>関連して、<code><a href="../reference/memory/shared_ptr.html">std::shared_ptr</a></code>クラスと<code><a href="../reference/memory/weak_ptr.html">std::weak_ptr</a></code>クラスのメンバ関数として、<code>owner_hash()</code>と<code>owner_equal()</code>を追加</li>
</ul>
</li>
</ul>
<h3>日付・時間</h3>
<ul>
<li><code><a href="../reference/chrono.html">&lt;chrono&gt;</a></code>の以下のクラスに、ハッシュ値サポートとして<code><a href="../reference/functional/hash.html">std::hash</a></code>の特殊化を追加<ul>
<li><code><a href="../reference/chrono/duration.html">std::chrono::duration</a></code></li>
<li><code><a href="../reference/chrono/time_point.html">std::chrono::time_point</a></code></li>
<li><code><a href="../reference/chrono/day.html">std::chrono::day</a></code></li>
<li><code><a href="../reference/chrono/month.html">std::chrono::month</a></code></li>
<li><code><a href="../reference/chrono/year.html">std::chrono::year</a></code></li>
<li><code><a href="../reference/chrono/weekday.html">std::chrono::weekday</a></code></li>
<li><code><a href="../reference/chrono/weekday_indexed.html">std::chrono::weekday_indexed</a></code></li>
<li><code><a href="../reference/chrono/weekday_last.html">std::chrono::weekday_last</a></code></li>
<li><code><a href="../reference/chrono/month_day.html">std::chrono::month_day</a></code></li>
<li><code><a href="../reference/chrono/month_day_last.html">std::chrono::month_day_last</a></code></li>
<li><code><a href="../reference/chrono/month_weekday.html">std::chrono::month_weekday</a></code></li>
<li><code><a href="../reference/chrono/month_weekday_last.html">std::chrono::month_weekday_last</a></code></li>
<li><code><a href="../reference/chrono/year_month.html">std::chrono::year_month</a></code></li>
<li><code><a href="../reference/chrono/year_month_day.html">std::chrono::year_month_day</a></code></li>
<li><code><a href="../reference/chrono/year_month_day_last.html">std::chrono::year_month_day_last</a></code></li>
<li><code><a href="../reference/chrono/year_month_weekday.html">std::chrono::year_month_weekday</a></code></li>
<li><code><a href="../reference/chrono/year_month_weekday_last.html">std::chrono::year_month_weekday_last</a></code></li>
<li><code><a href="../reference/chrono/zoned_time.html">std::chrono::zoned_time</a></code></li>
<li><code><a href="../reference/chrono/leap_second.html">std::chrono::leap_second</a></code></li>
</ul>
</li>
</ul>
<h3>数値</h3>
<ul>
<li><code><a href="../reference/numeric.html">&lt;numeric&gt;</a></code>に、飽和演算 (Saturation Arithmetic) として、型の表現可能な範囲で演算を行う以下の関数を追加<ul>
<li><code><a href="../reference/numeric/add_sat.html">std::add_sat()</a></code></li>
<li><code><a href="../reference/numeric/sub_sat.html">std::sub_sat()</a></code></li>
<li><code><a href="../reference/numeric/mul_sat.html">std::mul_sat()</a></code></li>
<li><code><a href="../reference/numeric/div_sat.html">std::div_sat()</a></code></li>
<li><code><a href="../reference/numeric/saturate_cast.html">std::saturate_cast()</a></code></li>
</ul>
</li>
<li><code><a href="../reference/cmath.html">&lt;cmath&gt;</a></code>の以下の関数を、<code>constexpr</code>に対応 (特殊関数と、グローバルの丸めモードに依存する丸め関数以外の全て)<ul>
<li><code><a href="../reference/cmath/cos.html">std::cos()</a></code></li>
<li><code><a href="../reference/cmath/sin.html">std::sin()</a></code></li>
<li><code><a href="../reference/cmath/tan.html">std::tan()</a></code></li>
<li><code><a href="../reference/cmath/cosh.html">std::cosh()</a></code></li>
<li><code><a href="../reference/cmath/sinh.html">std::sinh()</a></code></li>
<li><code><a href="../reference/cmath/tanh.html">std::tanh()</a></code></li>
<li><code><a href="../reference/cmath/acos.html">std::acos()</a></code></li>
<li><code><a href="../reference/cmath/asin.html">std::asin()</a></code></li>
<li><code><a href="../reference/cmath/atan.html">std::atan()</a></code></li>
<li><code><a href="../reference/cmath/atan2.html">std::atan2()</a></code></li>
<li><code><a href="../reference/cmath/acosh.html">std::acosh()</a></code></li>
<li><code><a href="../reference/cmath/asinh.html">std::asinh()</a></code></li>
<li><code><a href="../reference/cmath/atanh.html">std::atanh()</a></code></li>
<li><code><a href="../reference/cmath/exp.html">std::exp()</a></code></li>
<li><code><a href="../reference/cmath/exp2.html">std::exp2()</a></code></li>
<li><code><a href="../reference/cmath/expm1.html">std::expm1()</a></code></li>
<li><code><a href="../reference/cmath/log.html">std::log()</a></code></li>
<li><code><a href="../reference/cmath/log10.html">std::log10()</a></code></li>
<li><code><a href="../reference/cmath/log1p.html">std::log1p()</a></code></li>
<li><code><a href="../reference/cmath/log2.html">std::log2()</a></code></li>
<li><code><a href="../reference/cmath/pow.html">std::pow()</a></code></li>
<li><code><a href="../reference/cmath/sqrt.html">std::sqrt()</a></code></li>
<li><code><a href="../reference/cmath/cbrt.html">std::cbrt()</a></code></li>
<li><code><a href="../reference/cmath/hypot.html">std::hypot()</a></code></li>
<li><code><a href="../reference/cmath/erf.html">std::erf()</a></code></li>
<li><code><a href="../reference/cmath/erfc.html">std::erfc()</a></code></li>
<li><code><a href="../reference/cmath/lgamma.html">std::lgamma()</a></code></li>
<li><code><a href="../reference/cmath/tgamma.html">std::tgamma()</a></code></li>
</ul>
</li>
<li><code><a href="../reference/complex.html">&lt;complex&gt;</a></code>の以下の関数を、<code>constexpr</code>に対応 (すべて)<ul>
<li><code><a href="../reference/complex/complex/abs.html">std::abs()</a></code></li>
<li><code><a href="../reference/complex/complex/arg.html">std::arg()</a></code></li>
<li><code><a href="../reference/complex/complex/proj.html">std::proj()</a></code></li>
<li><code><a href="../reference/complex/complex/polar.html">std::polar()</a></code></li>
<li><code><a href="../reference/complex/complex/cos.html">std::cos()</a></code></li>
<li><code><a href="../reference/complex/complex/sin.html">std::sin()</a></code></li>
<li><code><a href="../reference/complex/complex/tan.html">std::tan()</a></code></li>
<li><code><a href="../reference/complex/complex/cosh.html">std::cosh()</a></code></li>
<li><code><a href="../reference/complex/complex/sinh.html">std::sinh()</a></code></li>
<li><code><a href="../reference/complex/complex/tanh.html">std::tanh()</a></code></li>
<li><code><a href="../reference/complex/complex/acos.html">std::acos()</a></code></li>
<li><code><a href="../reference/complex/complex/asin.html">std::asin()</a></code></li>
<li><code><a href="../reference/complex/complex/atan.html">std::atan()</a></code></li>
<li><code><a href="../reference/complex/complex/acosh.html">std::acosh()</a></code></li>
<li><code><a href="../reference/complex/complex/asinh.html">std::asinh()</a></code></li>
<li><code><a href="../reference/complex/complex/atanh.html">std::atanh()</a></code></li>
<li><code><a href="../reference/complex/complex/exp.html">std::exp()</a></code></li>
<li><code><a href="../reference/complex/complex/log.html">std::log()</a></code></li>
<li><code><a href="../reference/complex/complex/log10.html">std::log10()</a></code></li>
<li><code><a href="../reference/complex/complex/pow.html">std::pow()</a></code></li>
<li><code><a href="../reference/complex/complex/sqrt.html">std::sqrt()</a></code></li>
<li><code><a href="../reference/complex/complex/norm.html">std::norm()</a></code> (算術型オーバーロード)</li>
<li><code><a href="../reference/complex/complex/conj.html">std::conj()</a></code> (算術型オーバーロード)</li>
<li><code><a href="../reference/complex/complex/imag_free.html">std::imag()</a></code> (算術型オーバーロード)</li>
<li><code><a href="../reference/complex/complex/real_free.html">std::real()</a></code> (算術型オーバーロード)</li>
</ul>
</li>
<li><code><a href="../reference/complex/complex.html">std::complex</a></code>を構造化束縛や、将来のパターンマッチで使用できるようタプルインタフェースの特殊化を追加</li>
<li><code><a href="../reference/random.html">&lt;random&gt;</a></code>の範囲<code>[0, 1)</code>の乱数を生成する<code><a href="../reference/random/generate_canonical.html">std::generate_canonical()</a></code>を、望ましい統計的性質を保証するようアルゴリズムと制約を変更</li>
<li><code><a href="../reference/random.html">&lt;random&gt;</a></code>に、乱数列を生成する<code><a href="../reference/random/generate_random.html">std::ranges::generate_random()</a></code>関数を追加</li>
<li><code><a href="../reference/random.html">&lt;random&gt;</a></code>に、乱数生成器は並列シミュレーションに効果的なカウンターベースのPhilox乱数生成器として、<code><a href="../reference/random/philox_engine.html">std::philox_engine</a></code>クラス、およびその別名である<code><a href="../reference/random/philox4x32.html">std::philox4x32</a></code>と<code><a href="../reference/random/philox4x64.html">std::philox4x64</a></code>を追加</li>
</ul>
<h3>ユーティリティ</h3>
<ul>
<li><code><a href="../reference/variant/variant.html">std::variant</a></code>クラスに、メンバ関数版の<code><a href="../reference/variant/variant/visit.md.nolink">visit()</a></code>を追加</li>
<li><code>std::monostate</code>を<code><a href="../reference/variant.html">&lt;variant&gt;</a></code>から<code><a href="../reference/utility.html">&lt;utility&gt;</a></code>に移動</li>
<li><code><a href="../reference/optional/optional.html">std::optional</a></code>クラスに、0もしくは1要素のRangeとして扱えるようにするための拡張として、イテレータインタフェースを追加<ul>
<li><code>iterator</code>型</li>
<li><code>const_iterator</code>型</li>
<li><code><a href="../reference/optional/optional/begin.md.nolink">begin()</a></code>メンバ関数</li>
<li><code><a href="../reference/optional/optional/end.md.nolink">end()</a></code>メンバ関数</li>
</ul>
</li>
<li><code><a href="../reference/tuple/ignore.html">std::ignore</a></code>をファーストクラス・オブジェクトとして型を詳細に定義</li>
<li><code><a href="../reference/bitset/bitset.html">std::bitset</a></code>に、<code><a href="../reference/string_view/basic_string_view.html">std::basic_string_view</a></code>を受け取るコンストラクタを追加</li>
<li><code><a href="../reference/ratio.html">&lt;ratio&gt;</a></code>に、新たなSI接頭辞として、以下を追加<ul>
<li><code><a href="../reference/ratio/si_prefix.html">ronna</a></code> (10<sup>27</sup>)</li>
<li><code><a href="../reference/ratio/si_prefix.html">ronto</a></code> (10<sup>−27</sup>)</li>
<li><code><a href="../reference/ratio/si_prefix.html">quetta</a></code> (10<sup>30</sup>)</li>
<li><code><a href="../reference/ratio/si_prefix.html">quecto</a></code> (10<sup>−30</sup>)</li>
</ul>
</li>
<li>定数式での例外送出が許可されることにともない、以下を<code>constexpr</code>化<ul>
<li><code><a href="../reference/exception.html">&lt;exception&gt;</a></code>ヘッダの以下の機能<ul>
<li><code><a href="../reference/exception/exception.html">std::exception</a></code>クラスの全メンバ関数</li>
<li><code><a href="../reference/exception/nested_exception.html">std::nested_exception</a></code>クラスの全メンバ関数</li>
<li><code><a href="../reference/exception/bad_exception.html">std::bad_exception</a></code>クラスの<code>what()</code>メンバ関数</li>
<li><code><a href="../reference/exception/uncaught_exceptions.html">std::uncaught_exceptions()</a></code>関数</li>
<li><code><a href="../reference/exception/current_exception.html">std::current_exception()</a></code>関数</li>
<li><code><a href="../reference/exception/rethrow_exception.html">std::rethrow_exception()</a></code>関数</li>
<li><code><a href="../reference/exception/make_exception_ptr.html">std::make_exception_ptr()</a></code>関数</li>
<li><code><a href="../reference/exception/throw_with_nested.html">std::throw_with_nested()</a></code>関数</li>
<li><code><a href="../reference/exception/rethrow_if_nested.html">std::rethrow_if_nested()</a></code>関数</li>
</ul>
</li>
<li><code><a href="../reference/new.html">&lt;new&gt;</a></code>ヘッダの以下の機能<ul>
<li><code><a href="../reference/new/bad_alloc.html">std::bad_alloc</a></code>クラスの<code>what()</code>メンバ関数</li>
<li><code><a href="../reference/new/bad_array_new_length.html">std::bad_array_new_length</a></code>クラスの<code>what()</code>メンバ関数</li>
</ul>
</li>
<li><code><a href="../reference/typeinfo.html">&lt;typeinfo&gt;</a></code>ヘッダの以下の機能<ul>
<li><code><a href="../reference/typeinfo/bad_cast.html">std::bad_cast</a></code>クラスの<code>what()</code>メンバ関数</li>
<li><code><a href="../reference/typeinfo/bad_typeid.html">std::bad_typeid</a></code>クラスの<code>what()</code>メンバ関数</li>