Skip to content

Commit b091662

Browse files
Preview PR 1565: 88c229f20774a1
1 parent e77bbc0 commit b091662

4 files changed

Lines changed: 869 additions & 340 deletions

File tree

gen/pull/1565/PREVIEW.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# PR [\#1565](https://github.com/cpprefjp/site/pull/1565) プレビュー
2-
- ⌚ 更新時刻: 2026-01-14 14:34:51 JST
2+
- ⌚ 更新時刻: 2026-01-14 15:29:17 JST
33
- 🔍 [プレビュー (HTML)](https://cpprefjp.github.io/site/gen/pull/1565)
44
- 📈 [プレビュー生成記録](https://github.com/cpprefjp/site/actions?query=event%3Apull_request_target+branch%3Acpp26_202512)
5-
- **⫯** ソースの変更: [`20774a1..4b39fd0`](https://github.com/cpprefjp/site/compare/20774a15f7926ec873fcb58ecf36dd589eb6583c..4b39fd0c2927258f8b8299d42de88202e92ce5a5)
5+
- **⫯** ソースの変更: [`20774a1..88c229f`](https://github.com/cpprefjp/site/compare/20774a15f7926ec873fcb58ecf36dd589eb6583c..88c229faf9ea1bc61e26126c31c3a75f6ca52c6e)
66

77
## 変更記事一覧 (1件)
88

gen/pull/1565/lang/cpp26.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@
176176

177177
<p class="text-right"><small>
178178
最終更新日時(UTC):
179-
<span itemprop="datePublished" content="2026-01-14T05:29:54">
180-
2026年01月14日 05時29分54秒
179+
<span itemprop="datePublished" content="2026-01-14T06:24:44">
180+
2026年01月14日 06時24分44秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -515,6 +515,7 @@ <h3>全体</h3>
515515
</ul>
516516
<h3>コンテナ</h3>
517517
<ul>
518+
<li><code><a href="../reference/vector/vector.html">std::vector&lt;bool&gt;::reference</a></code>のプロキシ操作として、<code>const</code>修飾付きの代入と<code>swap()</code>メンバ関数を追加</li>
518519
<li><code><a href="../reference/mdspan/mdspan.html">std::mdspan</a></code>から部分ビューを取り出す<code><a href="../reference/mdspan/submdspan.html">std::submdspan()</a></code>を追加</li>
519520
<li><code><a href="../reference/mdspan/mdspan.html">std::mdspan</a></code>に、インデックスを指定して要素を取り出す<code><span href="https://cpprefjp.github.io/reference/mdspan/mdspan/at.md.nolink">at()</span></code>メンバ関数を追加</li>
520521
<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>
@@ -689,8 +690,10 @@ <h3>文字列</h3>
689690
<li>ポインタ出力のサポートを追加</li>
690691
<li>幅と精度を動的に指定した場合でも型の検証がコンパイル時に行われるよう仕様を見直し</li>
691692
<li>コンパイル時の書式文字列だけでなく、実行時の書式文字列を渡せるよう仕様修正</li>
693+
<li><code>constexpr</code>に対応</li>
692694
</ul>
693695
</li>
696+
<li><code><a href="../reference/string/to_string.html">std::to_string()</a></code><code><a href="../reference/string/to_wstring.html">std::to_wstring()</a></code><code>constexpr</code>に対応</li>
694697
<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_view/basic_string_view.html">std::basic_string_view</a></code>として取得するメンバ関数<code>subview()</code>を追加</li>
695698
<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>
696699
</ul>
@@ -986,6 +989,7 @@ <h3>型特性</h3>
986989
<li><code><a href="../reference/type_traits.html">&lt;type_traits&gt;</a></code>に、共用体の指定されたメンバがアクティブかを定数式で判定するための関数として<code><a href="../reference/type_traits/is_within_lifetime.html">std::is_within_lifetime()</a></code>を追加</li>
987990
<li><code><a href="../reference/type_traits.html">&lt;type_traits&gt;</a></code>に、仮想継承の関係を判定する<code><a href="../reference/type_traits/is_virtual_base_of.html">std::is_virtual_base_of</a></code>を追加</li>
988991
<li><code><a href="../reference/type_traits.html">&lt;type_traits&gt;</a></code>に、<code><a href="../reference/type_traits/integral_constant.html">std::integral_constant</a></code>クラスを置き換える定数ラッパーとして<code><span href="https://cpprefjp.github.io/reference/type_traits/constant_wrapper.md.nolink">std::constant_wrapper</span></code>クラスを追加</li>
992+
<li><code><a href="../reference/utility/index_sequence.html">std::index_sequence</a></code>クラスを<a href="cpp17/structured_bindings.html">構造化束縛</a><span href="https://cpprefjp.github.io/lang/cpp26/expansion_statements.md.nolink">template for文</span>で使用できるようにするため、タプルインタフェースの特殊化を追加</li>
989993
</ul>
990994
<h3>制約</h3>
991995
<ul>

0 commit comments

Comments
 (0)