Skip to content

Commit 59d0c1d

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 773cfc9 commit 59d0c1d

File tree

7 files changed

+1018
-70
lines changed

7 files changed

+1018
-70
lines changed

lang/cpp23.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,12 @@
176176

177177
<p class="text-right"><small>
178178
最終更新日時(UTC):
179-
<span itemprop="datePublished" content="2024-08-05T10:26:27">
180-
2024年08月05日 10時26分27秒
179+
<span itemprop="datePublished" content="2024-08-15T04:13:14">
180+
2024年08月15日 04時13分14秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
184-
<span itemprop="name">Akira Takahashi</span>
184+
<span itemprop="name">suomesta</span>
185185
</span>
186186
が更新
187187
</small></p>
@@ -543,7 +543,7 @@ <h3>文字列</h3>
543543
<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>contains()</code>を追加</li>
544544
<li><code><a href="../reference/string_view/basic_string_view.html">std::basic_string_view</a></code>のコンストラクタに、範囲をとるオーバーロードを追加</li>
545545
<li><code>std::string s = nullptr;</code>のような文字列オブジェクトに<code>nullptr</code>を代入するようなコードはバグの元であるため、<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/cstddef/nullptr_t.html">nullptr_t</a></code>をとるコンストラクタをdelete定義として追加</li>
546-
<li><code><a href="../reference/string/basic_string.html">std::basic_string</a></code>クラスに、resize時に任意の初期化を行う<code><span href="https://cpprefjp.github.io/reference/string/basic_string/resize_and_overwrite.md.nolink">resize_and_overwrite()</span></code>メンバ関数を追加</li>
546+
<li><code><a href="../reference/string/basic_string.html">std::basic_string</a></code>クラスに、resize時に任意の初期化を行う<code><a href="../reference/string/basic_string/resize_and_overwrite.html">resize_and_overwrite()</a></code>メンバ関数を追加</li>
547547
<li><code><a href="../reference/string/basic_string.html">std::basic_string</a></code>クラスのコンストラクタと<code><a href="../reference/string/basic_string/substr.html">substr()</a></code>メンバ関数に一時オブジェクトのオーバーロードを追加</li>
548548
<li><code><a href="../reference/format/format.html">std::format()</a></code>関数でRange・コンテナ、<code><a href="../reference/tuple/tuple.html">std::tuple</a></code><code><a href="../reference/utility/pair.html">std::pair</a></code>を出力できるよう、<code><a href="../reference/format/formatter.html">std::formatter</a></code>に特殊化を追加<ul>
549549
<li>Range・シーケンスコンテナは<code>[1, 2, 3]</code><code>["hello", "world"]</code><code>['a', 'b', 'c']</code>のように出力される</li>

reference/string/basic_string.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-08-11T08:04:47">
192-
2024年08月11日 08時04分47秒
191+
<span itemprop="datePublished" content="2024-08-15T04:13:14">
192+
2024年08月15日 04時13分14秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -424,6 +424,11 @@ <h3>領域</h3>
424424
<td></td>
425425
</tr>
426426
<tr>
427+
<td><code><a href="basic_string/resize_and_overwrite.html">resize_and_overwrite</a></code></td>
428+
<td>文字列の長さの変更と併せて任意の初期化を行う</td>
429+
<td>C++23</td>
430+
</tr>
431+
<tr>
427432
<td><code><a href="basic_string/capacity.html">capacity</a></code></td>
428433
<td>メモリを再確保せずに格納できる最大の要素数を取得する</td>
429434
<td></td>

0 commit comments

Comments
 (0)