Skip to content

Commit 2091dc0

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 6e411b3 commit 2091dc0

117 files changed

Lines changed: 5831 additions & 3644 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lang/cpp14/feature_test_macros.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@
189189
<p class="text-right"><small>
190190
最終更新日時:
191191
<time itemprop="datePublished" class="js-local-time"
192-
datetime="2026-08-09T02:04:00+09:00">
193-
2026年08月09日 02時04分00秒 (JST)
192+
datetime="2026-08-21T13:32:41+09:00">
193+
2026年08月21日 13時32分41秒 (JST)
194194
</time>
195195
<br/>
196196
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
197-
<span itemprop="name">rotarymars</span>
197+
<span itemprop="name">Akira Takahashi</span>
198198
</span>
199199
が更新
200200
</small></p>
@@ -446,6 +446,10 @@ <h2>概要</h2>
446446
<h2>参照</h2>
447447
<ul>
448448
<li><a href="https://isocpp.org/std/standing-documents/sd-6-sg10-feature-test-recommendations#recs.cpp14" target="_blank">SD-6: SG10 Feature Test Recommendations: Standard C++</a></li>
449+
<li><a href="https://cplusplus.github.io/LWG/issue3122" target="_blank">LWG Issue 3122. <code>__cpp_lib_chrono_udls</code> was accidentally dropped</a><ul>
450+
<li>C++20のドラフト作業中に誤って削除されていた機能テストマクロ<code>__cpp_lib_chrono_udls</code>(値<code>201304L</code>)が復活された</li>
451+
</ul>
452+
</li>
449453
</ul></div>
450454

451455
</div>

lang/cpp17/feature_test_macros.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@
189189
<p class="text-right"><small>
190190
最終更新日時:
191191
<time itemprop="datePublished" class="js-local-time"
192-
datetime="2026-08-09T03:16:00+09:00">
193-
2026年08月09日 03時16分00秒 (JST)
192+
datetime="2026-08-21T13:32:41+09:00">
193+
2026年08月21日 13時32分41秒 (JST)
194194
</time>
195195
<br/>
196196
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
197-
<span itemprop="name">rotarymars</span>
197+
<span itemprop="name">Akira Takahashi</span>
198198
</span>
199199
が更新
200200
</small></p>
@@ -682,6 +682,10 @@ <h3>ライブラリ</h3>
682682
<h2>参照</h2>
683683
<ul>
684684
<li><a href="https://isocpp.org/std/standing-documents/sd-6-sg10-feature-test-recommendations#recs.cpp17" target="_blank">SD-6: SG10 Feature Test Recommendations: Standard C++</a></li>
685+
<li><a href="https://cplusplus.github.io/LWG/issue3137" target="_blank">LWG Issue 3137. Header for <code>__cpp_lib_to_chars</code></a><ul>
686+
<li>C++20で、<code>__cpp_lib_to_chars</code>が定義されるヘッダの記載が<code>&lt;utility&gt;</code>から<code>&lt;charconv&gt;</code>に修正された</li>
687+
</ul>
688+
</li>
685689
</ul></div>
686690

687691
</div>

lang/cpp20/feature_test_macros.html

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@
189189
<p class="text-right"><small>
190190
最終更新日時:
191191
<time itemprop="datePublished" class="js-local-time"
192-
datetime="2026-08-18T15:40:20+09:00">
193-
2026年08月18日 15時40分20秒 (JST)
192+
datetime="2026-08-21T13:33:52+09:00">
193+
2026年08月21日 13時33分52秒 (JST)
194194
</time>
195195
<br/>
196196
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -649,7 +649,7 @@ <h3>ライブラリ</h3>
649649
<td><code>__cpp_lib_polymorphic_allocator</code></td>
650650
<td><code>201902L</code></td>
651651
<td><code><a href="../../reference/memory_resource/polymorphic_allocator.html">std::pmr::polymorphic_allocator</a></code>の改修</td>
652-
<td><code><a href="../../reference/memory.html">&lt;memory&gt;</a></code></td>
652+
<td><code><a href="../../reference/memory_resource.html">&lt;memory_resource&gt;</a></code></td>
653653
</tr>
654654
<tr>
655655
<td><code>__cpp_lib_ranges</code></td>
@@ -758,6 +758,22 @@ <h3>ライブラリ</h3>
758758
<h2>参照</h2>
759759
<ul>
760760
<li><a href="https://isocpp.org/std/standing-documents/sd-6-sg10-feature-test-recommendations" target="_blank">SD-FeatureTest: Feature-Test Macros and Policies - isocpp</a></li>
761+
<li><a href="https://cplusplus.github.io/LWG/issue3437" target="_blank">LWG Issue 3437. <code>__cpp_lib_polymorphic_allocator</code> is in the wrong header</a><ul>
762+
<li>C++23で、<code>__cpp_lib_polymorphic_allocator</code>が定義されるヘッダの記載が<code>&lt;memory&gt;</code>から<code>&lt;memory_resource&gt;</code>に修正された</li>
763+
</ul>
764+
</li>
765+
<li><a href="https://cplusplus.github.io/LWG/issue3257" target="_blank">LWG Issue 3257. Missing feature testing macro update from P0858</a><ul>
766+
<li>C++20で、<code>__cpp_lib_array_constexpr</code><code>201803L</code>に、<code>__cpp_lib_string_view</code><code>201803L</code>に更新された</li>
767+
</ul>
768+
</li>
769+
<li><a href="https://cplusplus.github.io/LWG/issue3274" target="_blank">LWG Issue 3274. Missing feature test macro for <code>&lt;span&gt;</code></a><ul>
770+
<li>C++20で、機能テストマクロ<code>__cpp_lib_span</code>が追加された(最終的な値は後続の提案文書により<code>202002L</code></li>
771+
</ul>
772+
</li>
773+
<li><a href="https://cplusplus.github.io/LWG/issue3256" target="_blank">LWG Issue 3256. Feature testing macro for <code>constexpr</code> algorithms</a><ul>
774+
<li>C++20で、機能テストマクロ名が<code>__cpp_lib_constexpr_swap_algorithms</code>から<code>__cpp_lib_constexpr_algorithms</code>にリネームされた</li>
775+
</ul>
776+
</li>
761777
<li><a href="https://cplusplus.github.io/LWG/issue3792" target="_blank">LWG Issue 3792. <code>__cpp_lib_constexpr_algorithms</code> should also be defined in <code>&lt;utility&gt;</code></a><ul>
762778
<li>C++23で、<code>__cpp_lib_constexpr_algorithms</code>の定義ヘッダに<code><a href="../../reference/utility.html">&lt;utility&gt;</a></code>が追加された(値<code>201806L</code>は不変。C++20へ遡及適用される)</li>
763779
</ul>

reference/algorithm/ranges_min_max_result.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@
189189
<p class="text-right"><small>
190190
最終更新日時:
191191
<time itemprop="datePublished" class="js-local-time"
192-
datetime="2026-01-09T11:10:05+09:00">
193-
2026年01月09日 11時10分05秒 (JST)
192+
datetime="2026-08-21T13:39:10+09:00">
193+
2026年08月21日 13時39分10秒 (JST)
194194
</time>
195195
<br/>
196196
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
197-
<span itemprop="name">Raclamusi</span>
197+
<span itemprop="name">Akira Takahashi</span>
198198
</span>
199199
が更新
200200
</small></p>
@@ -343,6 +343,10 @@ <h3>処理系</h3>
343343
<h2>参照</h2>
344344
<ul>
345345
<li><a href="https://timsong-cpp.github.io/cppwp/n4861/algorithms" target="_blank">N4861 25 Algorithms library</a></li>
346+
<li><a href="https://cplusplus.github.io/LWG/issue3180" target="_blank">LWG Issue 3180. Inconsistently named return type for <code>ranges::minmax_element</code></a><ul>
347+
<li>C++20で、<code>ranges::minmax_element</code><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>型のエイリアス名が<code>minmax_result</code>から<code>minmax_element_result</code>に改名され、命名の一貫性が確保された</li>
348+
</ul>
349+
</li>
346350
</ul></div>
347351

348352
</div>

reference/algorithm/ranges_next_permutation.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@
189189
<p class="text-right"><small>
190190
最終更新日時:
191191
<time itemprop="datePublished" class="js-local-time"
192-
datetime="2025-08-31T19:06:36+09:00">
193-
2025年08月31日 19時06分36秒 (JST)
192+
datetime="2026-08-21T13:39:45+09:00">
193+
2026年08月21日 13時39分45秒 (JST)
194194
</time>
195195
<br/>
196196
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
197-
<span itemprop="name">Raclamusi</span>
197+
<span itemprop="name">Akira Takahashi</span>
198198
</span>
199199
が更新
200200
</small></p>
@@ -334,6 +334,10 @@ <h3>処理系</h3>
334334
<h2>参照</h2>
335335
<ul>
336336
<li><a href="https://timsong-cpp.github.io/cppwp/n4861/algorithms" target="_blank">N4861 25 Algorithms library</a></li>
337+
<li><a href="https://cplusplus.github.io/LWG/issue3169" target="_blank">LWG Issue 3169. Ranges permutation generators discard useful information</a><ul>
338+
<li>C++20で、<code>ranges::next_permutation</code>/<code>ranges::prev_permutation</code><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a><code>bool</code>から、順列生成後の終端イテレータも返す結果型に変更された</li>
339+
</ul>
340+
</li>
337341
</ul></div>
338342

339343
</div>

reference/algorithm/ranges_partial_sort_copy.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@
189189
<p class="text-right"><small>
190190
最終更新日時:
191191
<time itemprop="datePublished" class="js-local-time"
192-
datetime="2026-02-05T13:53:18+09:00">
193-
2026年02月05日 13時53分18秒 (JST)
192+
datetime="2026-08-21T13:41:14+09:00">
193+
2026年08月21日 13時41分14秒 (JST)
194194
</time>
195195
<br/>
196196
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -403,6 +403,10 @@ <h2>参照</h2>
403403
<ul>
404404
<li><a href="https://timsong-cpp.github.io/cppwp/n4861/algorithms" target="_blank">N4861 25 Algorithms library</a></li>
405405
<li><a href="https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3179r9.html" target="_blank">P3179R9 C++ parallel range algorithms</a></li>
406+
<li><a href="https://cplusplus.github.io/LWG/issue3186" target="_blank">LWG Issue 3186. Ranges <code>remove</code>, <code>partition</code>, and <code>partial_sort_copy</code> algorithms discard useful information</a><ul>
407+
<li>C++20で、これらのアルゴリズムが処理後の終端イテレータ等の有用な情報を返すよう、<a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a><code>subrange</code>や結果型に変更された</li>
408+
</ul>
409+
</li>
406410
</ul></div>
407411

408412
</div>

reference/algorithm/ranges_partition.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@
189189
<p class="text-right"><small>
190190
最終更新日時:
191191
<time itemprop="datePublished" class="js-local-time"
192-
datetime="2026-08-14T16:00:18+09:00">
193-
2026年08月14日 16時00分18秒 (JST)
192+
datetime="2026-08-21T13:41:14+09:00">
193+
2026年08月21日 13時41分14秒 (JST)
194194
</time>
195195
<br/>
196196
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -387,6 +387,10 @@ <h2>参照</h2>
387387
<li>C++26で、並列版のイテレータ<a class="cpprefjp-defined-word" data-desc="同名の関数を異なる引数・テンプレート・制約などで複数定義すること。または同名の関数の集合">オーバーロード</a>(3)に<code>permutable&lt;I&gt;</code>制約が追加された(範囲版(4)にはあったが、イテレータ版で欠落していたものの修正)</li>
388388
</ul>
389389
</li>
390+
<li><a href="https://cplusplus.github.io/LWG/issue3186" target="_blank">LWG Issue 3186. Ranges <code>remove</code>, <code>partition</code>, and <code>partial_sort_copy</code> algorithms discard useful information</a><ul>
391+
<li>C++20で、これらのアルゴリズムが処理後の終端イテレータ等の有用な情報を返すよう、<a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a><code>subrange</code>や結果型に変更された</li>
392+
</ul>
393+
</li>
390394
</ul></div>
391395

392396
</div>

reference/algorithm/ranges_prev_permutation.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@
189189
<p class="text-right"><small>
190190
最終更新日時:
191191
<time itemprop="datePublished" class="js-local-time"
192-
datetime="2026-08-07T00:17:00+09:00">
193-
2026年08月07日 00時17分00秒 (JST)
192+
datetime="2026-08-21T13:39:45+09:00">
193+
2026年08月21日 13時39分45秒 (JST)
194194
</time>
195195
<br/>
196196
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
197-
<span itemprop="name">rotarymars</span>
197+
<span itemprop="name">Akira Takahashi</span>
198198
</span>
199199
が更新
200200
</small></p>
@@ -331,6 +331,10 @@ <h3>処理系</h3>
331331
<h2>参照</h2>
332332
<ul>
333333
<li><a href="https://timsong-cpp.github.io/cppwp/n4861/algorithms" target="_blank">N4861 25 Algorithms library</a></li>
334+
<li><a href="https://cplusplus.github.io/LWG/issue3169" target="_blank">LWG Issue 3169. Ranges permutation generators discard useful information</a><ul>
335+
<li>C++20で、<code>ranges::next_permutation</code>/<code>ranges::prev_permutation</code><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a><code>bool</code>から、順列生成後の終端イテレータも返す結果型に変更された</li>
336+
</ul>
337+
</li>
334338
</ul></div>
335339

336340
</div>

reference/algorithm/ranges_remove.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@
189189
<p class="text-right"><small>
190190
最終更新日時:
191191
<time itemprop="datePublished" class="js-local-time"
192-
datetime="2026-08-14T16:00:18+09:00">
193-
2026年08月14日 16時00分18秒 (JST)
192+
datetime="2026-08-21T13:41:14+09:00">
193+
2026年08月21日 13時41分14秒 (JST)
194194
</time>
195195
<br/>
196196
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -468,6 +468,10 @@ <h2>参照</h2>
468468
<li>C++26で、並列版のイテレータ<a class="cpprefjp-defined-word" data-desc="同名の関数を異なる引数・テンプレート・制約などで複数定義すること。または同名の関数の集合">オーバーロード</a>(3)に<code>permutable&lt;I&gt;</code>制約が追加された(範囲版(4)にはあったが、イテレータ版で欠落していたものの修正)</li>
469469
</ul>
470470
</li>
471+
<li><a href="https://cplusplus.github.io/LWG/issue3186" target="_blank">LWG Issue 3186. Ranges <code>remove</code>, <code>partition</code>, and <code>partial_sort_copy</code> algorithms discard useful information</a><ul>
472+
<li>C++20で、これらのアルゴリズムが処理後の終端イテレータ等の有用な情報を返すよう、<a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a><code>subrange</code>や結果型に変更された</li>
473+
</ul>
474+
</li>
471475
</ul></div>
472476

473477
</div>

reference/algorithm/ranges_remove_if.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@
189189
<p class="text-right"><small>
190190
最終更新日時:
191191
<time itemprop="datePublished" class="js-local-time"
192-
datetime="2026-08-14T16:00:18+09:00">
193-
2026年08月14日 16時00分18秒 (JST)
192+
datetime="2026-08-21T13:41:14+09:00">
193+
2026年08月21日 13時41分14秒 (JST)
194194
</time>
195195
<br/>
196196
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -379,6 +379,10 @@ <h2>参照</h2>
379379
<li>C++26で、並列版のイテレータ<a class="cpprefjp-defined-word" data-desc="同名の関数を異なる引数・テンプレート・制約などで複数定義すること。または同名の関数の集合">オーバーロード</a>(3)に<code>permutable&lt;I&gt;</code>制約が追加された(範囲版(4)にはあったが、イテレータ版で欠落していたものの修正)</li>
380380
</ul>
381381
</li>
382+
<li><a href="https://cplusplus.github.io/LWG/issue3186" target="_blank">LWG Issue 3186. Ranges <code>remove</code>, <code>partition</code>, and <code>partial_sort_copy</code> algorithms discard useful information</a><ul>
383+
<li>C++20で、これらのアルゴリズムが処理後の終端イテレータ等の有用な情報を返すよう、<a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a><code>subrange</code>や結果型に変更された</li>
384+
</ul>
385+
</li>
382386
</ul></div>
383387

384388
</div>

0 commit comments

Comments
 (0)