Skip to content

Commit 1fd39c5

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 5741da7 commit 1fd39c5

File tree

17 files changed

+1328
-216
lines changed

17 files changed

+1328
-216
lines changed

lang/cpp26.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="2025-08-21T11:53:21">
180-
2025年08月21日 11時53分21秒
179+
<span itemprop="datePublished" content="2025-08-24T16:54:17">
180+
2025年08月24日 16時54分17秒
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">Raclamusi</span>
185185
</span>
186186
が更新
187187
</small></p>
@@ -872,7 +872,7 @@ <h3>ユーティリティ</h3>
872872
</ul>
873873
</li>
874874
<li><code><a href="../reference/optional/optional.html">std::optional</a></code>に、参照を保持するための<code>T&amp;</code>の部分特殊化を追加</li>
875-
<li><code><a href="../reference/tuple/apply.html">std::tuple</a></code><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>型推論をやめて、<a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>型用の<code><span href="https://cpprefjp.github.io/reference/tuple/apply_result.md.nolink">std::apply_result</span></code>クラスを追加し、関連する以下の機能を追加<ul>
875+
<li><code><a href="../reference/tuple/apply.html">std::apply</a></code><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>型推論をやめて、<a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>型用の<code><span href="https://cpprefjp.github.io/reference/tuple/apply_result.md.nolink">std::apply_result</span></code>クラスを追加し、関連する以下の機能を追加<ul>
876876
<li><code><span href="https://cpprefjp.github.io/reference/type_traits/is_applicable.md.nolink">std::is_applicable</span></code>型特性</li>
877877
<li><code><span href="https://cpprefjp.github.io/reference/type_traits/is_nothrow_applicable.md.nolink">std::is_nothrow_applicable</span></code>型特性</li>
878878
</ul>

reference/cmath/nearbyint.html

Lines changed: 3 additions & 3 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="2025-08-23T16:55:29">
192-
2025年08月23日 16時55分29秒
191+
<span itemprop="datePublished" content="2025-08-24T16:54:17">
192+
2025年08月24日 16時54分17秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -243,7 +243,7 @@ <h2><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価
243243
<p>引数 <code>x</code> を現在の丸めモードで整数値に丸めた値</p>
244244
<h2>備考</h2>
245245
<ul>
246-
<li>本関数と <code><a href="rint.html">rint</a></code><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>は同一であるが、本関数は引数 <code>x</code><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>と異なっていても <code><a href="../cfenv/fe_invalid.html">FE_INEXACT</a></code> は発生しないが、<code><a href="rint.html">rint</a></code> は発生する可能性がある点のみ動作が異なる。</li>
246+
<li>本関数と <code><a href="rint.html">rint</a></code><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>は同一であるが、本関数は引数 <code>x</code><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>と異なっていても <code><a href="../cfenv/fe_inexact.html">FE_INEXACT</a></code> は発生しないが、<code><a href="rint.html">rint</a></code> は発生する可能性がある点のみ動作が異なる。</li>
247247
<li>本関数は、C99 の規格にある <code>nearbyint</code>(より正確には <code>math.h</code> ヘッダの <code>nearbyint</code><code>nearbyintf</code><code>nearbyintl</code> の 3 つ。それぞれ C++ の <code>double</code><code>float</code><code>long double</code> バージョンに相当)と等価である。</li>
248248
<li>C++11 以降では、処理系が IEC 60559 に準拠している場合(<code><a href="../limits/numeric_limits.html">std::numeric_limits</a>&lt;T&gt;::<a href="../limits/numeric_limits/is_iec559.html">is_iec559</a>() != false</code>)、以下の規定が追加される。<ul>
249249
<li><code>x = ±0</code> の場合、<code>±0</code> を返す。</li>

reference/cstddef/size_t.html

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

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-07-13T06:17:26">
192-
2025年07月13日 06時17分26秒
191+
<span itemprop="datePublished" content="2025-08-24T16:54:17">
192+
2025年08月24日 16時54分17秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Koichi Murase</span>
196+
<span itemprop="name">Raclamusi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -221,7 +221,7 @@
221221
<h2>概要</h2>
222222
<p><code>size_t</code>は、オブジェクトのバイト数を表現できる程度に十分に大きい符号なし整数型である。
223223
C++03まではC言語と同じく「<code>sizeof</code>演算子によって返される符号なし整数型」と規定されていた。</p>
224-
<p>オブジェクトのバイト数(例えば<code><a href="../cstdlib.html">malloc</a></code>の引数)やコンテナの要素数(例えば<code><a href="../iterator/size.html">std::size()</a></code><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>)を表現するために用いられる。</p>
224+
<p>オブジェクトのバイト数(例えば<code><a href="../cstdlib/malloc.html">malloc</a></code>の引数)やコンテナの要素数(例えば<code><a href="../iterator/size.html">std::size()</a></code><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a>)を表現するために用いられる。</p>
225225
<h2></h2>
226226
<p><div class="yata" id="5b17f1801ee4b8981d96d9c5f0fad11f5a5a427c"><div class="codehilite"><pre><span></span><code><span class="cp">#include</span> <span class="cpf"><a href="../cstddef.html">&lt;cstddef&gt;</a></span><span class="cp"></span>
227227
<span class="cp">#include</span> <span class="cpf"><a href="../cassert.html">&lt;cassert&gt;</a></span><span class="cp"></span>

reference/execution/execution/stopped_as_error.html

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

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2025-08-20T09:48:11">
204-
2025年08月20日 09時48分11秒
203+
<span itemprop="datePublished" content="2025-08-24T16:54:17">
204+
2025年08月24日 16時54分17秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
208-
<span itemprop="name">yoh</span>
208+
<span itemprop="name">Raclamusi</span>
209209
</span>
210210
が更新
211211
</small></p>
@@ -235,7 +235,7 @@ <h2>概要</h2>
235235
<p><code>stopped_as_error</code>は、入力<a href="sender.html">Sender</a><a href="set_stopped.html">停止完了</a>をカスタムエラー型の<a href="set_error.html">エラー完了</a>にマップするSenderアダプタである。</p>
236236
<p><code>stopped_as_error</code><a href="sender_adaptor_closure.html">パイプ可能Senderアダプタオブジェクト</a>であり、パイプライン記法をサポートする。</p>
237237
<h2>効果</h2>
238-
<p>説明用の式<code>sndr</code><code>err</code>に対して、型<code>Sndr</code><code>decltype((sndr))</code>、型<code>Err</code><code>decltype((err))</code>とする。<code>Sndr</code><code><a href="sender.html">sender</a></code>を満たさない、もしくは<code>Err</code><code><a href="../movable-value.html">moveable-value</a></code>を満たさないとき、呼び出し式<code>stopped_as_error(sndr, err)</code><a class="cpprefjp-defined-word" data-desc="プログラムが適格でないこと。コンパイルエラーなどになる" href="../../../implementation-compliance.html#dfn-ill-formed">不適格</a>となる。</p>
238+
<p>説明用の式<code>sndr</code><code>err</code>に対して、型<code>Sndr</code><code>decltype((sndr))</code>、型<code>Err</code><code>decltype((err))</code>とする。<code>Sndr</code><code><a href="sender.html">sender</a></code>を満たさない、もしくは<code>Err</code><code><a href="../movable-value.html">movable-value</a></code>を満たさないとき、呼び出し式<code>stopped_as_error(sndr, err)</code><a class="cpprefjp-defined-word" data-desc="プログラムが適格でないこと。コンパイルエラーなどになる" href="../../../implementation-compliance.html#dfn-ill-formed">不適格</a>となる。</p>
239239
<p>そうでなければ、呼び出し式<code>stopped_as_error(sndr, err)</code><code>sndr</code>が1回だけ評価されることを除いて、下記と等価。</p>
240240
<p><div class="codehilite"><pre><span></span><code><span class="n"><a href="transform_sender.html">transform_sender</a></span><span class="p">(</span><span class="n"><a href="get-domain-early.html">get-domain-early</a></span><span class="p">(</span><span class="n">sndr</span><span class="p">),</span> <span class="n"><a href="make-sender.html">make-sender</a></span><span class="p">(</span><span class="n">stopped_as_error</span><span class="p">,</span> <span class="n">err</span><span class="p">,</span> <span class="n">sndr</span><span class="p">))</span>
241241
</code></pre></div>

reference/filesystem/proximate.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-06-11T13:45:38">
192-
2024年06月11日 13時45分38秒
191+
<span itemprop="datePublished" content="2025-08-24T16:54:17">
192+
2025年08月24日 16時54分17秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Akira Takahashi</span>
196+
<span itemprop="name">Raclamusi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -230,8 +230,8 @@ <h2>概要</h2>
230230
<h2><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a></h2>
231231
<ul>
232232
<li>(1) : <code>return proximate(p, <a href="current_path.html">current_path()</a>, ec);</code></li>
233-
<li>(2) : <code>return <a href="weakly_canonical.html">weakly_canonical</a>(p).<a href="path/lexically_relative.html">lexically_proximate</a>(<a href="weakly_canonical.html">weakly_canonical</a>(base));</code></li>
234-
<li>(3) : <code>return <a href="weakly_canonical.html">weakly_canonical</a>(p, ec).<a href="path/lexically_relative.html">lexically_proximate</a>(<a href="weakly_canonical.html">weakly_canonical</a>(base, ec));</code></li>
233+
<li>(2) : <code>return <a href="weakly_canonical.html">weakly_canonical</a>(p).<a href="path/lexically_proximate.html">lexically_proximate</a>(<a href="weakly_canonical.html">weakly_canonical</a>(base));</code></li>
234+
<li>(3) : <code>return <a href="weakly_canonical.html">weakly_canonical</a>(p, ec).<a href="path/lexically_proximate.html">lexically_proximate</a>(<a href="weakly_canonical.html">weakly_canonical</a>(base, ec));</code></li>
235235
</ul>
236236
<p>(1)と(3)でエラーが発生した場合、<code>ec</code>にエラー情報が書き込まれ、<code>path()</code>が返る。</p>
237237
<h2><a class="cpprefjp-defined-word" data-desc="問題が発生したときに、現在実行位置を過去に通過・記録した位置に戻し、文脈情報を添えて紐づけられた処理(例外ハンドラー)を呼び出す仕組み。またはその事態">例外</a></h2>

reference/initializer_list/initializer_list.html

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

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-07-11T17:16:44">
192-
2025年07月11日 17時16分44秒
191+
<span itemprop="datePublished" content="2025-08-24T16:54:17">
192+
2025年08月24日 16時54分17秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Koichi Murase</span>
196+
<span itemprop="name">Raclamusi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -232,7 +232,7 @@ <h2>メンバ関数</h2>
232232
</thead>
233233
<tbody>
234234
<tr>
235-
<td><code><a href="initializer_list/op_constructor.html">constructor</a></code></td>
235+
<td><code><a href="initializer_list/op_constructor.html">(constructor)</a></code></td>
236236
<td>コンストラクタ</td>
237237
<td>C++11</td>
238238
</tr>

reference/iterator/move_iterator/op_increment.html

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

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2024-06-11T13:45:38">
204-
2024年06月11日 13時45分38秒
203+
<span itemprop="datePublished" content="2025-08-24T16:54:17">
204+
2025年08月24日 16時54分17秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
208-
<span itemprop="name">Akira Takahashi</span>
208+
<span itemprop="name">Raclamusi</span>
209209
</span>
210210
が更新
211211
</small></p>
@@ -248,7 +248,7 @@ <h2>効果</h2>
248248
<p>後置インクリメント <code>operator++(int)</code></p>
249249
<ul>
250250
<li>
251-
<p><code>Iterator</code><code><a href="../iterator_tag.html">forward_iterator</a></code>のモデルとなる場合、以下と等価
251+
<p><code>Iterator</code><code><a href="../forward_iterator.html">forward_iterator</a></code>のモデルとなる場合、以下と等価
252252
<br />
253253
<div class="codehilite"><pre><span></span><code><span class="n">move_iterator</span> <span class="n">tmp</span> <span class="o">=</span> <span class="o">*</span><span class="k">this</span><span class="p">;</span>
254254
<span class="o">++</span><span class="n"><a href="base.html">base</a></span><span class="p">();</span>

reference/linalg/layout_blas_packed/mapping.html

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

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2025-07-08T15:33:39">
204-
2025年07月08日 15時33分39秒
203+
<span itemprop="datePublished" content="2025-08-24T16:54:17">
204+
2025年08月24日 16時54分17秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
208-
<span itemprop="name">Akira Takahashi</span>
208+
<span itemprop="name">Raclamusi</span>
209209
</span>
210210
が更新
211211
</small></p>
@@ -252,7 +252,7 @@ <h2><a class="cpprefjp-defined-word" data-desc="関数等の意味論を構成
252252
<li><code>extents_type::static_extent(0) == extents_type::static_extent(1)</code></li>
253253
</ul>
254254
</li>
255-
<li><code><a href="../../mdspan/extents/rank.html">Extents::rank_dynamic()</a> == 0</code>のとき、<code>Ns</code><code><a href="../../mdspan/extents/static_extent.html">Extents::static_extent</a>(0)</code>としたとき値<code>Ns * (Ns + 1)</code><code>index_type</code>型で表現できること。</li>
255+
<li><code><a href="../../mdspan/extents/rank_dynamic.html">Extents::rank_dynamic()</a> == 0</code>のとき、<code>Ns</code><code><a href="../../mdspan/extents/static_extent.html">Extents::static_extent</a>(0)</code>としたとき値<code>Ns * (Ns + 1)</code><code>index_type</code>型で表現できること。</li>
256256
</ul>
257257
<h2>メンバ関数</h2>
258258
<h3>構築・破棄</h3>

reference/memory/shared_ptr/atomic_load_explicit.html

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

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2024-09-03T06:17:49">
204-
2024年09月03日 06時17分49秒
203+
<span itemprop="datePublished" content="2025-08-24T16:54:17">
204+
2025年08月24日 16時54分17秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
208-
<span itemprop="name">Akira Takahashi</span>
208+
<span itemprop="name">Raclamusi</span>
209209
</span>
210210
が更新
211211
</small></p>
@@ -287,7 +287,7 @@ <h3>処理系</h3>
287287
<h2>参照</h2>
288288
<ul>
289289
<li><code><a href="atomic_load.html">atomic_load() - shared_ptr</a></code></li>
290-
<li><code><a href="../../atomic/atomic_load.html">atomic_load_explicit() - &lt;atomic&gt;</a></code></li>
290+
<li><code><a href="../../atomic/atomic_load_explicit.html">atomic_load_explicit() - &lt;atomic&gt;</a></code></li>
291291
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2674.htm" target="_blank">N2674 Shared_ptr atomic access, revision 1</a></li>
292292
<li><a href="http://faithandbrave.hateblo.jp/entry/20081015/1224066366" target="_blank">C++0x Shared_ptr atomic access - Faith and Brave - C++で遊ぼう</a></li>
293293
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0718r2.html" target="_blank">P0718R2 Revising <code>atomic_shared_ptr</code> for C++20</a></li>

reference/mutex/timed_mutex.html

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

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-06-11T13:45:38">
192-
2024年06月11日 13時45分38秒
191+
<span itemprop="datePublished" content="2025-08-24T16:54:17">
192+
2025年08月24日 16時54分17秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Akira Takahashi</span>
196+
<span itemprop="name">Raclamusi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -220,7 +220,7 @@
220220
</p>
221221
<h2>概要</h2>
222222
<p><code>timed_mutex</code>は、スレッド間で使用する共有リソースを排他制御するためのクラスであり、ロック取得のタイムアウト機能をサポートする。<code><a href="timed_mutex/lock.html">lock()</a></code>メンバ関数によってリソースのロックを取得し、<code><a href="timed_mutex/unlock.html">unlock()</a></code>メンバ関数でリソースのロックを手放す。</p>
223-
<p>このクラスのデストラクタは自動的に<code><a href="timed_mutex/op_destructor.html">unlock()</a></code>メンバ関数を呼び出すことはないため、通常このクラスのメンバ関数は直接は呼び出さず、<code><a href="lock_guard.html">lock_guard</a></code><code><a href="unique_lock.html">unique_lock</a></code>といったロック管理クラスと併用する。</p>
223+
<p>このクラスのデストラクタは自動的に<code><a href="timed_mutex/unlock.html">unlock()</a></code>メンバ関数を呼び出すことはないため、通常このクラスのメンバ関数は直接は呼び出さず、<code><a href="lock_guard.html">lock_guard</a></code><code><a href="unique_lock.html">unique_lock</a></code>といったロック管理クラスと併用する。</p>
224224
<h2>メンバ関数</h2>
225225
<table border="1" bordercolor="#888" style="border-collapse:collapse">
226226
<thead>

0 commit comments

Comments
 (0)