-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrss.xml
More file actions
5028 lines (4552 loc) · 234 KB
/
Copy pathrss.xml
File metadata and controls
5028 lines (4552 loc) · 234 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-06-15T05:27:14.189777</updated>
<id>c6bca725-8838-4c13-a97b-c93bb5609652</id>
<entry>
<title>cfloat -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/cfloat.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/cfloat.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<content type="html"><div class="header">&lt;cfloat&gt;</div><h1 itemprop="name"><span class="token">cfloat</span></h1>
<div itemprop="articleBody"><p><code>&lt;cfloat&gt;</code>ヘッダでは、浮動小数点数に関連する定数値マクロを定義する。これは、C言語の標準ライブラリ<code>&lt;float.h&gt;</code>と同じである。</p>
<p>本ヘッダはフリースタンディング環境でも提供される。</p>
<p>浮動小数点数 $x$ は以下のようにモデル化される。</p>
<p>$$x = sb^e\sum^p_{k=1}f_kb^{-k},\qquad e_{\rm min} \le e \le e_{\rm max}$$</p>
<p>各パラメータは以下の通り。</p>
<p>$$
\begin{array}{ll}
s&amp;\text{符号($\pm 1$)}\\
b&amp;\text{指数表現の基数(1 より大きい整数)}\\
e&amp;\text{指数(最小 $e_{\rm min}$ 最大 $e_{\rm max}$ の整数)}\\
p&amp;\text{精度(基数 $b$ での仮数部の桁数)}\\
f_k&amp;\text{$b$ より小さい非負整数(仮数部の有効数字)}\\
\end{array}
$$</p>
<p>浮動小数点型で表される値としては、ゼロと $f_1 \gt 0$ である正規化数の他に、$e = e_{\rm min}$ かつ $f_1 = 0$ である非正規化数(subnormal numbers)、$e \gt e_{\rm min}$ かつ $f_1 = 0$ である正規化されていない数(unnormalized numbers)、および、浮動小数点数ではない無限大や NaN 等が含まれているかもしれない(実装によっては含まれていないかもしれない)。<br />
NaN とは非数(Not-a-Number)を表し、ほとんど全ての演算で浮動小数点例外を起こさず結果に伝播する quiet NaN(quiet:静かな)と、演算のオペランドに使用されると浮動小数点例外を引き起こす signaling NaN(signaling:信号を発する)がある。<br />
ゼロと浮動小数点数ではない値(無限大や NaN 等)には符号があるかもしれない(実装によっては無いかもしれない)。</p>
<p>本ヘッダで提供される整数値を表すマクロは、<code><a href="cfloat/flt_rounds.html">FLT_ROUNDS</a></code> を除いて <code>#if</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="cfloat/flt_rounds.html">FLT_ROUNDS</a></code></td>
<td>浮動小数点加算の丸めモード</td>
<td></td>
</tr>
</tbody>
</table>
<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="cfloat/flt_radix.html">FLT_RADIX</a></code></td>
<td>指数表現の基数。<br />上記モデルでは、$b$</td>
<td></td>
</tr>
</tbody>
</table>
<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="cfloat/flt_eval_method.html">FLT_EVAL_METHOD</a></code></td>
<td>浮動小数点数がどのように評価されるかを表す整数値</td>
<td>C++11</td>
</tr>
</tbody>
</table>
<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="cfloat/flt_dig.html">FLT_DIG</a></code></td>
<td><code>float</code>で正確に表現可能な10進数の最大の桁数。<br />上記モデルでは、$b$ が $10$ の累乗の場合、$p \log_{10} b$、それ以外の場合、$\lfloor (p - 1)\log_{10} b\rfloor$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_dig.html">DBL_DIG</a></code></td>
<td><code>double</code>で正確に表現可能な10進数の最大の桁数。<br />上記モデルでは、$b$ が $10$ の累乗の場合、$p \log_{10} b$、それ以外の場合、$\lfloor (p - 1)\log_{10} b\rfloor$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_dig.html">LDBL_DIG</a></code></td>
<td><code>long double</code>で正確に表現可能な10進数の最大の桁数。<br />上記モデルでは、$b$ が $10$ の累乗の場合、$p \log_{10} b$、それ以外の場合、$\lfloor (p - 1)\log_{10} b\rfloor$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/flt_decimal_dig.html">FLT_DECIMAL_DIG</a></code></td>
<td><code>float</code>の数値を10進数で正確に表すのに必要な有効数字の桁数。<br />上記モデルでは、$b$ が $10$ の累乗の場合、$p \log_{10} b$、それ以外の場合、$\lceil 1 + p \log_{10} b\rceil$</td>
<td>C++17</td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_decimal_dig.html">DBL_DECIMAL_DIG</a></code></td>
<td><code>double</code>の数値を10進数で正確に表すのに必要な有効数字の桁数。<br />上記モデルでは、$b$ が $10$ の累乗の場合、$p \log_{10} b$、それ以外の場合、$\lceil 1 + p \log_{10} b\rceil$</td>
<td>C++17</td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_decimal_dig.html">LDBL_DECIMAL_DIG</a></code></td>
<td><code>long double</code>の数値を10進数で正確に表すのに必要な有効数字の桁数。<br />上記モデルでは、$b$ が $10$ の累乗の場合、$p \log_{10} b$、それ以外の場合、$\lceil 1 + p \log_{10} b\rceil$</td>
<td>C++17</td>
</tr>
<tr>
<td><code><a href="cfloat/decimal_dig.html">DECIMAL_DIG</a></code></td>
<td>精度が一番高い浮動小数点型の数値を10進数で正確に表すのに必要な有効数字の桁数。<br />上記モデルでは、$p_{\rm max}$ を精度が一番高い浮動小数点型の $p$ とすると、$b$ が $10$ の累乗の場合、$p_{\rm max} \log_{10} b$、それ以外の場合、$\lceil 1 + p_{\rm max}\log_{10} b\rceil$</td>
<td>C++11<br /> C++26で非推奨</td>
</tr>
<tr>
<td><code><a href="cfloat/flt_mant_dig.html">FLT_MANT_DIG</a></code></td>
<td><code>float</code>を基数 <code><a href="cfloat/flt_radix.html">FLT_RADIX</a></code> で表現した際の仮数部の桁数。<br />上記モデルでは、$p$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_mant_dig.html">DBL_MANT_DIG</a></code></td>
<td><code>double</code>を基数 <code><a href="cfloat/flt_radix.html">FLT_RADIX</a></code> で表現した際の仮数部の桁数。<br />上記モデルでは、$p$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_mant_dig.html">LDBL_MANT_DIG</a></code></td>
<td><code>long double</code>を基数 <code><a href="cfloat/flt_radix.html">FLT_RADIX</a></code> で表現した際の仮数部の桁数。<br />上記モデルでは、$p$</td>
<td></td>
</tr>
</tbody>
</table>
<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="cfloat/flt_epsilon.html">FLT_EPSILON</a></code></td>
<td><code>float</code>における、$1$ と $1$ より大きい最小の数との差。(機械イプシロン)<br />上記モデルでは、$b^{1-p}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_epsilon.html">DBL_EPSILON</a></code></td>
<td><code>double</code>における、$1$ と $1$ より大きい最小の数との差。(機械イプシロン)<br />上記モデルでは、$b^{1-p}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_epsilon.html">LDBL_EPSILON</a></code></td>
<td><code>long double</code>における、$1$ と $1$ より大きい最小の数との差。(機械イプシロン)<br />上記モデルでは、$b^{1-p}$</td>
<td></td>
</tr>
</tbody>
</table>
<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="cfloat/flt_has_subnorm.html">FLT_HAS_SUBNORM</a></code></td>
<td><code>float</code>における非正規化数のサポート状況を判定する</td>
<td>C++17<br /> C++26で非推奨</td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_has_subnorm.html">DBL_HAS_SUBNORM</a></code></td>
<td><code>double</code>における非正規化数のサポート状況を判定する</td>
<td>C++17<br /> C++26で非推奨</td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_has_subnorm.html">LDBL_HAS_SUBNORM</a></code></td>
<td><code>long double</code>における非正規化数のサポート状況を判定する</td>
<td>C++17<br /> C++26で非推奨</td>
</tr>
</tbody>
</table>
<h2>無限大とNaN</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="cmath/infinity.html">INFINITY</a></code></td>
<td><code>float</code>型の正の無限大</td>
<td>C++26で<code>&lt;cfloat&gt;</code>に追加</td>
</tr>
<tr>
<td><code><a href="cmath/nan.html">NAN</a></code></td>
<td><code>float</code>型のquiet NaN</td>
<td>C++26で<code>&lt;cfloat&gt;</code>に追加</td>
</tr>
<tr>
<td><code><a href="cfloat/flt_snan.html">FLT_SNAN</a></code></td>
<td><code>float</code>型のシグナルNaN</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_snan.html">DBL_SNAN</a></code></td>
<td><code>double</code>型のシグナルNaN</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_snan.html">LDBL_SNAN</a></code></td>
<td><code>long double</code>型のシグナルNaN</td>
<td>C++26</td>
</tr>
</tbody>
</table>
<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>__STDC_VERSION_FLOAT_H__</code></td>
<td><code>&lt;cfloat&gt;</code>が提供するC標準ライブラリ機能のバージョン (<code>202311L</code>)</td>
<td>C++26</td>
</tr>
</tbody>
</table>
<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="cfloat/flt_max.html">FLT_MAX</a></code></td>
<td><code>float</code>の最大の有限値。<br />上記モデルでは、$(1-b^{-p})b^{e_{\rm max}}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_max.html">DBL_MAX</a></code></td>
<td><code>double</code>の最大の有限値。<br />上記モデルでは、$(1-b^{-p})b^{e_{\rm max}}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_max.html">LDBL_MAX</a></code></td>
<td><code>long double</code>の最大の有限値。<br />上記モデルでは、$(1-b^{-p})b^{e_{\rm max}}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/flt_max_10_exp.html">FLT_MAX_10_EXP</a></code></td>
<td>$10$ の $n$ 乗が、<code>float</code>の有限の値として表現可能であるような、最大の整数値 $n$。<br />上記モデルでは、$\lfloor\log_{10} ((1-b^{-p})b^{e_{\rm max}})\rfloor$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_max_10_exp.html">DBL_MAX_10_EXP</a></code></td>
<td>$10$ の $n$ 乗が、<code>double</code>の有限の値として表現可能であるような、最大の整数値 $n$。<br />上記モデルでは、$\lfloor\log_{10} ((1-b^{-p})b^{e_{\rm max}})\rfloor$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_max_10_exp.html">LDBL_MAX_10_EXP</a></code></td>
<td>$10$ の $n$ 乗が、<code>long double</code>の有限の値として表現可能であるような、最大の整数値 $n$。<br />上記モデルでは、$\lfloor\log_{10} ((1-b^{-p})b^{e_{\rm max}})\rfloor$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/flt_max_exp.html">FLT_MAX_EXP</a></code></td>
<td><code><a href="cfloat/flt_radix.html">FLT_RADIX</a></code> の $n - 1$ 乗が、<code>float</code>の有限の値として表現可能であるような、最大の整数値 $n$。<br />上記モデルでは、$e_{\rm max}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_max_exp.html">DBL_MAX_EXP</a></code></td>
<td><code><a href="cfloat/flt_radix.html">FLT_RADIX</a></code> の $n - 1$ 乗が、<code>double</code>の有限の値として表現可能であるような、最大の整数値 $n$。<br />上記モデルでは、$e_{\rm max}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_max_exp.html">LDBL_MAX_EXP</a></code></td>
<td><code><a href="cfloat/flt_radix.html">FLT_RADIX</a></code> の $n - 1$ 乗が、<code>long double</code>の有限の値として表現可能であるような、最大の整数値 $n$。<br />上記モデルでは、$e_{\rm max}$</td>
<td></td>
</tr>
</tbody>
</table>
<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="cfloat/flt_min.html">FLT_MIN</a></code></td>
<td><code>float</code>の正の正規化数のうち最小のもの。<br />上記モデルでは、$b^{e_{\rm min} - 1}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_min.html">DBL_MIN</a></code></td>
<td><code>double</code>の正の正規化数のうち最小のもの。<br />上記モデルでは、$b^{e_{\rm min} - 1}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_min.html">LDBL_MIN</a></code></td>
<td><code>long double</code>の正の正規化数のうち最小のもの。<br />上記モデルでは、$b^{e_{\rm min} - 1}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/flt_true_min.html">FLT_TRUE_MIN</a></code></td>
<td><code>float</code>の正の最小値</td>
<td>C++17</td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_true_min.html">DBL_TRUE_MIN</a></code></td>
<td><code>double</code>の正の最小値</td>
<td>C++17</td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_true_min.html">LDBL_TRUE_MIN</a></code></td>
<td><code>long double</code>の正の最小値</td>
<td>C++17</td>
</tr>
<tr>
<td><code><a href="cfloat/flt_min_10_exp.html">FLT_MIN_10_EXP</a></code></td>
<td>$10$ の $n$ 乗が<code>float</code>の正の正規化数であるような最小の負の整数値 $n$。<br />上記モデルでは、$\lceil\log_{10} b^{e_{\rm min} - 1}\rceil$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_min_10_exp.html">DBL_MIN_10_EXP</a></code></td>
<td>$10$ の $n$ 乗が<code>double</code>の正の正規化数であるような最小の負の整数値 $n$。<br />上記モデルでは、$\lceil\log_{10} b^{e_{\rm min} - 1}\rceil$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_min_10_exp.html">LDBL_MIN_10_EXP</a></code></td>
<td>$10$ の $n$ 乗が<code>long double</code>の正の正規化数であるような最小の負の整数値 $n$。<br />上記モデルでは、$\lceil\log_{10} b^{e_{\rm min} - 1}\rceil$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/flt_min_exp.html">FLT_MIN_EXP</a></code></td>
<td><code><a href="cfloat/flt_radix.html">FLT_RADIX</a></code> の $n - 1$ 乗が<code>float</code>の正規化数として表現可能な最小の負の整数値 $n$。<br />上記モデルでは、$e_{\rm min}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/dbl_min_exp.html">DBL_MIN_EXP</a></code></td>
<td><code><a href="cfloat/flt_radix.html">FLT_RADIX</a></code> の $n - 1$ 乗が<code>double</code>の正規化数として表現可能な最小の負の整数値 $n$。<br />上記モデルでは、$e_{\rm min}$</td>
<td></td>
</tr>
<tr>
<td><code><a href="cfloat/ldbl_min_exp.html">LDBL_MIN_EXP</a></code></td>
<td><code><a href="cfloat/flt_radix.html">FLT_RADIX</a></code> の $n - 1$ 乗が<code>long double</code>の正規化数として表現可能な最小の負の整数値 $n$。<br />上記モデルでは、$e_{\rm min}$</td>
<td></td>
</tr>
</tbody>
</table>
<h2>参照</h2>
<ul>
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0063r3.html" target="_blank">P0063R3 C++17 should refer to C11 instead of C99</a></li>
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0175r1.html" target="_blank">P0175R1 Synopses for the C library</a></li>
<li><a href="https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.pdf" target="_blank">P3348R4 C++26 should refer to C23 not C17</a><ul>
<li>C++26がC23を参照するようになり、<code>INFINITY</code>・<code>NAN</code>・<code>FLT_SNAN</code>・<code>DBL_SNAN</code>・<code>LDBL_SNAN</code>・<code>__STDC_VERSION_FLOAT_H__</code>が追加された。<code>DECIMAL_DIG</code>が非推奨となり、<code>FLT_HAS_SUBNORM</code>・<code>DBL_HAS_SUBNORM</code>・<code>LDBL_HAS_SUBNORM</code>が廃止予定 (obsolescent) となった</li>
</ul>
</li>
</ul></div></content>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>DBL_HAS_SUBNORM -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/cfloat/dbl_has_subnorm.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/cfloat/dbl_has_subnorm.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/cfloat/dbl_has_subnorm.md b/reference/cfloat/dbl_has_subnorm.md
index 90038be2e..dcc788ad6 100644
--- a/reference/cfloat/dbl_has_subnorm.md
+++ b/reference/cfloat/dbl_has_subnorm.md
@@ -77,5 +77,5 @@ int main()
- [WG14/N1378 `xxx_TRUE_MIN` macros for `&lt;float.h&gt;`](http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1378.htm)
- [P0063R3 C++17 should refer to C11 instead of C99](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0063r3.html)
- [P0175R1 Synopses for the C library](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0175r1.html)
-- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.html)
+- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.pdf)
- C++26がC23を参照するようになり、このマクロが廃止予定 (obsolescent) となった
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>DBL_SNAN -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/cfloat/dbl_snan.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/cfloat/dbl_snan.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/cfloat/dbl_snan.md b/reference/cfloat/dbl_snan.md
index bc59c1267..5d2870bfe 100644
--- a/reference/cfloat/dbl_snan.md
+++ b/reference/cfloat/dbl_snan.md
@@ -57,5 +57,5 @@ true
## 参照
-- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.html)
+- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.pdf)
- C++26がC23を参照するようになり、このマクロが`&lt;cfloat&gt;`に追加された
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>DECIMAL_DIG -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/cfloat/decimal_dig.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/cfloat/decimal_dig.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/cfloat/decimal_dig.md b/reference/cfloat/decimal_dig.md
index b9af3ed43..4a793cb8f 100644
--- a/reference/cfloat/decimal_dig.md
+++ b/reference/cfloat/decimal_dig.md
@@ -98,5 +98,5 @@ int main()
## 参照
-- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.html)
+- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.pdf)
- C++26がC23を参照するようになり、このマクロが非推奨となった
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>FLT_HAS_SUBNORM -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/cfloat/flt_has_subnorm.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/cfloat/flt_has_subnorm.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/cfloat/flt_has_subnorm.md b/reference/cfloat/flt_has_subnorm.md
index 27ba310a9..a6b43eb25 100644
--- a/reference/cfloat/flt_has_subnorm.md
+++ b/reference/cfloat/flt_has_subnorm.md
@@ -77,5 +77,5 @@ int main()
- [WG14/N1378 `xxx_TRUE_MIN` macros for `&lt;float.h&gt;`](http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1378.htm)
- [P0063R3 C++17 should refer to C11 instead of C99](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0063r3.html)
- [P0175R1 Synopses for the C library](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0175r1.html)
-- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.html)
+- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.pdf)
- C++26がC23を参照するようになり、このマクロが廃止予定 (obsolescent) となった
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>FLT_SNAN -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/cfloat/flt_snan.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/cfloat/flt_snan.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/cfloat/flt_snan.md b/reference/cfloat/flt_snan.md
index fb10a1589..8e1b7f174 100644
--- a/reference/cfloat/flt_snan.md
+++ b/reference/cfloat/flt_snan.md
@@ -57,5 +57,5 @@ true
## 参照
-- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.html)
+- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.pdf)
- C++26がC23を参照するようになり、このマクロが`&lt;cfloat&gt;`に追加された
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>LDBL_HAS_SUBNORM -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/cfloat/ldbl_has_subnorm.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/cfloat/ldbl_has_subnorm.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/cfloat/ldbl_has_subnorm.md b/reference/cfloat/ldbl_has_subnorm.md
index c71f9de5d..de3c1834a 100644
--- a/reference/cfloat/ldbl_has_subnorm.md
+++ b/reference/cfloat/ldbl_has_subnorm.md
@@ -77,5 +77,5 @@ int main()
- [WG14/N1378 `xxx_TRUE_MIN` macros for `&lt;float.h&gt;`](http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1378.htm)
- [P0063R3 C++17 should refer to C11 instead of C99](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0063r3.html)
- [P0175R1 Synopses for the C library](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0175r1.html)
-- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.html)
+- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.pdf)
- C++26がC23を参照するようになり、このマクロが廃止予定 (obsolescent) となった
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>LDBL_SNAN -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/cfloat/ldbl_snan.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/cfloat/ldbl_snan.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/cfloat/ldbl_snan.md b/reference/cfloat/ldbl_snan.md
index 0fbddf481..29c0dfad4 100644
--- a/reference/cfloat/ldbl_snan.md
+++ b/reference/cfloat/ldbl_snan.md
@@ -57,5 +57,5 @@ true
## 参照
-- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.html)
+- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.pdf)
- C++26がC23を参照するようになり、このマクロが`&lt;cfloat&gt;`に追加された
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>cinttypes -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/cinttypes.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/cinttypes.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<content type="html"><div class="header">&lt;cinttypes&gt;</div><h1 itemprop="name"><span class="token">cinttypes</span><span class="cpp cpp11" title="C++11で追加">(C++11)</span></h1>
<div itemprop="articleBody"><p><code>&lt;cinttypes&gt;</code>ヘッダでは、<code><a href="cstdint.html">&lt;cstdint&gt;</a></code>の固定幅整数型を<code><a href="cstdio.html">&lt;cstdio&gt;</a></code>の<code>printf</code>系・<code>scanf</code>系関数で入出力するための書式指定マクロと、最大幅整数型に対する数値変換関数を提供する。これらの機能は、<code>std</code>名前空間に属することを除いてC言語の標準ライブラリ<code>&lt;inttypes.h&gt;</code>ヘッダと同じである。</p>
<p>このヘッダは<code><a href="cstdint.html">&lt;cstdint&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>imaxdiv_t</code></td>
<td><code>imaxdiv</code>関数の戻り値型</td>
<td>C++11</td>
</tr>
</tbody>
</table>
<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>imaxabs</code></td>
<td><code>intmax_t</code>の絶対値を取得する</td>
<td>C++11</td>
</tr>
<tr>
<td><code>imaxdiv</code></td>
<td><code>intmax_t</code>の除算と剰余算を行う</td>
<td>C++11</td>
</tr>
<tr>
<td><code>strtoimax</code></td>
<td>文字列を<code>intmax_t</code>に変換する</td>
<td>C++11</td>
</tr>
<tr>
<td><code>strtoumax</code></td>
<td>文字列を<code>uintmax_t</code>に変換する</td>
<td>C++11</td>
</tr>
<tr>
<td><code>wcstoimax</code></td>
<td>ワイド文字列を<code>intmax_t</code>に変換する</td>
<td>C++11</td>
</tr>
<tr>
<td><code>wcstoumax</code></td>
<td>ワイド文字列を<code>uintmax_t</code>に変換する</td>
<td>C++11</td>
</tr>
<tr>
<td><code>abs</code></td>
<td><code>intmax_t</code>の絶対値を取得する (<code>imaxabs</code>のオーバーロード、処理系定義)</td>
<td>C++11</td>
</tr>
<tr>
<td><code>div</code></td>
<td><code>intmax_t</code>の除算と剰余算を行う (<code>imaxdiv</code>のオーバーロード、処理系定義)</td>
<td>C++11</td>
</tr>
</tbody>
</table>
<h2>出力用の書式指定マクロ</h2>
<p><code>printf</code>系関数で固定幅整数型を出力するための変換指定子を表すマクロ。<code>PRI</code>に続けて変換 (<code>d</code>/<code>i</code>/<code>o</code>/<code>u</code>/<code>x</code>/<code>X</code>/<code>b</code>/<code>B</code>) と型の種別を組み合わせる。</p>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>名前</th>
<th>説明</th>
<th>対応バージョン</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>PRId</code><em>N</em>, <code>PRIi</code><em>N</em>, <code>PRIo</code><em>N</em>, <code>PRIu</code><em>N</em>, <code>PRIx</code><em>N</em>, <code>PRIX</code><em>N</em></td>
<td><code>intN_t</code> / <code>uintN_t</code>用</td>
<td>C++11</td>
</tr>
<tr>
<td><a href="cinttypes/prib.html"><code>PRIb</code><em>N</em>, <code>PRIB</code><em>N</em></a></td>
<td><code>intN_t</code> / <code>uintN_t</code>用 (2進数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code>PRIdLEAST</code><em>N</em> 等, <code>PRIdFAST</code><em>N</em> 等</td>
<td><code>int_leastN_t</code> / <code>int_fastN_t</code>系用 (2進数の<code>b</code>/<code>B</code>はC++26)</td>
<td>C++11</td>
</tr>
<tr>
<td><code>PRIdMAX</code> 等, <code>PRIdPTR</code> 等</td>
<td><code>intmax_t</code> / <code>intptr_t</code>系用 (2進数の<code>b</code>/<code>B</code>はC++26)</td>
<td>C++11</td>
</tr>
</tbody>
</table>
<h2>入力用の書式指定マクロ</h2>
<p><code>scanf</code>系関数で固定幅整数型を入力するための変換指定子を表すマクロ。<code>SCN</code>に続けて変換 (<code>d</code>/<code>i</code>/<code>o</code>/<code>u</code>/<code>x</code>/<code>b</code>) と型の種別を組み合わせる。</p>
<table border="1" bordercolor="#888" style="border-collapse:collapse">
<thead>
<tr>
<th>名前</th>
<th>説明</th>
<th>対応バージョン</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>SCNd</code><em>N</em>, <code>SCNi</code><em>N</em>, <code>SCNo</code><em>N</em>, <code>SCNu</code><em>N</em>, <code>SCNx</code><em>N</em></td>
<td><code>intN_t</code> / <code>uintN_t</code>用</td>
<td>C++11</td>
</tr>
<tr>
<td><a href="cinttypes/scnb.html"><code>SCNb</code><em>N</em></a></td>
<td><code>intN_t</code> / <code>uintN_t</code>用 (2進数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code>SCNdLEAST</code><em>N</em> 等, <code>SCNdFAST</code><em>N</em> 等</td>
<td><code>int_leastN_t</code> / <code>int_fastN_t</code>系用 (2進数の<code>b</code>はC++26)</td>
<td>C++11</td>
</tr>
<tr>
<td><code>SCNdMAX</code> 等, <code>SCNdPTR</code> 等</td>
<td><code>intmax_t</code> / <code>intptr_t</code>系用 (2進数の<code>b</code>はC++26)</td>
<td>C++11</td>
</tr>
</tbody>
</table>
<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>__STDC_VERSION_INTTYPES_H__</code></td>
<td><code>&lt;cinttypes&gt;</code>が提供するC標準ライブラリ機能のバージョン (<code>202311L</code>)</td>
<td>C++26</td>
</tr>
</tbody>
</table>
<h2>バージョン</h2>
<h3>言語</h3>
<ul>
<li>C++11</li>
</ul>
<h2>関連項目</h2>
<ul>
<li><code><a href="cstdint.html">&lt;cstdint&gt;</a></code></li>
<li><code><a href="cstdio.html">&lt;cstdio&gt;</a></code></li>
</ul>
<h2>参照</h2>
<ul>
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1568.htm" target="_blank">N1568 Proposed additions to TR-1 to improve compatibility with C99</a></li>
<li><a href="https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.pdf" target="_blank">P3348R4 C++26 should refer to C23 not C17</a><ul>
<li>C++26がC23を参照するようになり、2進数用の書式指定マクロ (<code>PRIb</code><em>N</em>・<code>PRIB</code><em>N</em>・<code>SCNb</code><em>N</em>等) と<code>__STDC_VERSION_INTTYPES_H__</code>が追加された</li>
</ul>
</li>
</ul></div></content>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>PRIbN, PRIBN -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/cinttypes/prib.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/cinttypes/prib.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/cinttypes/prib.md b/reference/cinttypes/prib.md
index f597f1802..9f6bfb6a6 100644
--- a/reference/cinttypes/prib.md
+++ b/reference/cinttypes/prib.md
@@ -72,5 +72,5 @@ int main()
## 参照
-- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.html)
+- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.pdf)
- C++26がC23を参照するようになり、これらのマクロが`&lt;cinttypes&gt;`に追加された
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>SCNbN -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/cinttypes/scnb.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/cinttypes/scnb.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/cinttypes/scnb.md b/reference/cinttypes/scnb.md
index d568dbef7..ca7157611 100644
--- a/reference/cinttypes/scnb.md
+++ b/reference/cinttypes/scnb.md
@@ -62,5 +62,5 @@ int main()
## 参照
-- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.html)
+- [P3348R4 C++26 should refer to C23 not C17](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3348r4.pdf)
- C++26がC23を参照するようになり、これらのマクロが`&lt;cinttypes&gt;`に追加された
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>climits -- リンクミスを修正 (close #1658)</title>
<link href="https://cpprefjp.github.io/reference/climits.html"/>
<id>9b9ae3b39ccd3db3bfc7d1026691fdccbe748ccd:reference/climits.md</id>
<updated>2026-06-15T14:22:22+09:00</updated>
<content type="html"><div class="header">&lt;climits&gt;</div><h1 itemprop="name"><span class="token">climits</span></h1>
<div itemprop="articleBody"><p><code>&lt;climits&gt;</code>ヘッダでは、整数型に関するマクロが定義されている。これは、C言語の標準ライブラリ<code>&lt;limits.h&gt;</code>と同じである。</p>
<p>本ヘッダはフリースタンディング環境でも提供される。</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="climits/schar_min.html">SCHAR_MIN</a></code></td>
<td><code>signed char</code> の最小値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/char_min.html">CHAR_MIN</a></code></td>
<td><code>char</code> の最小値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/shrt_min.html">SHRT_MIN</a></code></td>
<td><code>short</code> の最小値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/int_min.html">INT_MIN</a></code></td>
<td><code>int</code> の最小値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/long_min.html">LONG_MIN</a></code></td>
<td><code>long</code> の最小値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/llong_min.html">LLONG_MIN</a></code></td>
<td><code>long long</code> の最小値</td>
<td>C++11</td>
</tr>
</tbody>
</table>
<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="climits/uchar_max.html">UCHAR_MAX</a></code></td>
<td><code>unsigned char</code> の最大値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/schar_max.html">SCHAR_MAX</a></code></td>
<td><code>signed char</code> の最大値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/char_max.html">CHAR_MAX</a></code></td>
<td><code>char</code> の最大値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/ushrt_max.html">USHRT_MAX</a></code></td>
<td><code>unsigned short</code> の最大値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/shrt_max.html">SHRT_MAX</a></code></td>
<td><code>short</code> の最大値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/uint_max.html">UINT_MAX</a></code></td>
<td><code>unsigned</code> の最大値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/int_max.html">INT_MAX</a></code></td>
<td><code>int</code> の最大値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/ulong_max.html">ULONG_MAX</a></code></td>
<td><code>unsigned long</code> の最大値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/long_max.html">LONG_MAX</a></code></td>
<td><code>long</code> の最大値</td>
<td></td>
</tr>
<tr>
<td><code><a href="climits/ullong_max.html">ULLONG_MAX</a></code></td>
<td><code>unsigned long long</code> の最大値</td>
<td>C++11</td>
</tr>
<tr>
<td><code><a href="climits/llong_max.html">LLONG_MAX</a></code></td>
<td><code>long long</code> の最大値</td>
<td>C++11</td>
</tr>
</tbody>
</table>
<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="climits/bool_width.html">BOOL_WIDTH</a></code></td>
<td><code>bool</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="climits/char_width.html">CHAR_WIDTH</a></code></td>
<td><code>char</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="climits/schar_width.html">SCHAR_WIDTH</a></code></td>
<td><code>signed char</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="climits/uchar_width.html">UCHAR_WIDTH</a></code></td>
<td><code>unsigned char</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="climits/shrt_width.html">SHRT_WIDTH</a></code></td>
<td><code>short</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="climits/ushrt_width.html">USHRT_WIDTH</a></code></td>
<td><code>unsigned short</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="climits/int_width.html">INT_WIDTH</a></code></td>
<td><code>int</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="climits/uint_width.html">UINT_WIDTH</a></code></td>
<td><code>unsigned int</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="climits/long_width.html">LONG_WIDTH</a></code></td>
<td><code>long</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="climits/ulong_width.html">ULONG_WIDTH</a></code></td>
<td><code>unsigned long</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="climits/llong_width.html">LLONG_WIDTH</a></code></td>
<td><code>long long</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
<tr>
<td><code><a href="climits/ullong_width.html">ULLONG_WIDTH</a></code></td>
<td><code>unsigned long long</code> の幅 (値ビット数)</td>
<td>C++26</td>
</tr>
</tbody>
</table>