Skip to content

Commit 1fcf80d

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 4b1f621 commit 1fcf80d

File tree

10 files changed

+711
-1308
lines changed

10 files changed

+711
-1308
lines changed

reference/compare.html

Lines changed: 3 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="2024-07-10T07:47:57">
180-
2024年07月10日 07時47分57秒
179+
<span itemprop="datePublished" content="2026-02-24T03:22:12">
180+
2026年02月24日 03時22分12秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -391,6 +391,7 @@ <h2>参照</h2>
391391
<li><a href="http://wg21.link/p1614" target="_blank">P1614R2 The Mothership has Landed (Adding &lt;=&gt; to the Library)</a></li>
392392
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p1959r0.html" target="_blank">P1959R0 Remove <code>std::weak_equality</code> and <code>std::strong_equality</code></a></li>
393393
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p1855r0.html" target="_blank">P1855R0 Make <code>&lt;compare&gt;</code> freestanding</a></li>
394+
<li><a href="https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2404r3.pdf" target="_blank">P2404R3 Move-only types for <code>equality_comparable_with</code>, <code>totally_ordered_with</code>, and <code>three_way_comparable_with</code></a></li>
394395
</ul></div>
395396

396397
</div>

reference/compare/three_way_comparable.html

Lines changed: 5 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-14T14:12:05">
192-
2025年07月14日 14時12分05秒
191+
<span itemprop="datePublished" content="2026-02-24T03:22:12">
192+
2026年02月24日 03時22分12秒
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">Akira Takahashi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -264,7 +264,7 @@ <h2>要件</h2>
264264
<span class="n">concept</span> <span class="n"><a href="">three_way_comparable_with</a></span> <span class="o">=</span>
265265
<span class="n"><a href="">three_way_comparable</a></span><span class="o">&lt;</span><span class="n">T</span><span class="p">,</span> <span class="n">Cat</span><span class="o">&gt;</span> <span class="o">&amp;&amp;</span>
266266
<span class="n"><a href="">three_way_comparable</a></span><span class="o">&lt;</span><span class="n">U</span><span class="p">,</span> <span class="n">Cat</span><span class="o">&gt;</span> <span class="o">&amp;&amp;</span>
267-
<span class="n"><a href="../concepts/common_reference_with.html">common_reference_with</a></span><span class="o">&lt;</span><span class="k">const</span> <span class="n"><a href="../type_traits/remove_reference.html">remove_reference_t</a></span><span class="o">&lt;</span><span class="n">T</span><span class="o">&gt;&amp;</span><span class="p">,</span> <span class="k">const</span> <span class="n"><a href="../type_traits/remove_reference.html">remove_reference_t</a></span><span class="o">&lt;</span><span class="n">U</span><span class="o">&gt;&amp;&gt;</span> <span class="o">&amp;&amp;</span>
267+
<span class="n"><a href="../exposition-only/comparison-common-type-with.html">comparison-common-type-with</a></span><span class="o">&lt;</span><span class="n">T</span><span class="p">,</span> <span class="n">U</span><span class="o">&gt;</span> <span class="o">&amp;&amp;</span>
268268
<span class="n"><a href="">three_way_comparable</a></span><span class="o">&lt;</span>
269269
<span class="n"><a href="../type_traits/common_reference.html">common_reference_t</a></span><span class="o">&lt;</span><span class="k">const</span> <span class="n"><a href="../type_traits/remove_reference.html">remove_reference_t</a></span><span class="o">&lt;</span><span class="n">T</span><span class="o">&gt;&amp;</span><span class="p">,</span> <span class="k">const</span> <span class="n"><a href="../type_traits/remove_reference.html">remove_reference_t</a></span><span class="o">&lt;</span><span class="n">U</span><span class="o">&gt;&amp;&gt;</span><span class="p">,</span> <span class="n">Cat</span><span class="o">&gt;</span> <span class="o">&amp;&amp;</span>
270270
<span class="n"><a href="../concepts/equality_comparable.html">weakly-equality-comparable-with</a></span><span class="o">&lt;</span><span class="n">T</span><span class="p">,</span> <span class="n">U</span><span class="o">&gt;</span> <span class="o">&amp;&amp;</span>
@@ -461,6 +461,7 @@ <h2>参照</h2>
461461
<ul>
462462
<li><a href="http://wg21.link/p0768" target="_blank">P0768R1 Library support for the spaceship (comparison) operator</a></li>
463463
<li><a href="http://wg21.link/p1614" target="_blank">P1614R2 The Mothership has Landed (Adding &lt;=&gt; to the Library)</a></li>
464+
<li><a href="https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2404r3.pdf" target="_blank">P2404R3 Move-only types for <code>equality_comparable_with</code>, <code>totally_ordered_with</code>, and <code>three_way_comparable_with</code></a></li>
464465
<li><a href="https://wg21.cmeerw.net/lwg/issue3360" target="_blank">LWG Issue 3360. <code>three_way_comparable_with</code> is inconsistent with similar concepts</a></li>
465466
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2020/p1964r2.html" target="_blank">P1964R2 Wording for <code>boolean-testable</code></a></li>
466467
</ul></div>

reference/concepts.html

Lines changed: 3 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="2024-09-03T06:17:49">
180-
2024年09月03日 06時17分49秒
179+
<span itemprop="datePublished" content="2026-02-24T03:22:12">
180+
2026年02月24日 03時22分12秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -540,6 +540,7 @@ <h2>参照</h2>
540540
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p1754r1.pdf" target="_blank">P1754R1 Rename concepts to standard_case for C++20, while we still can</a></li>
541541
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2020/p2101r0.html" target="_blank">P2101R0 “Models” subsumes “satisfies” (Wording for US298 and US300)</a></li>
542542
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2020/p2102r0.html" target="_blank">P2102R0 Make “implicit expression variations” more explicit (Wording for US185)</a></li>
543+
<li><a href="https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2404r3.pdf" target="_blank">P2404R3 Move-only types for <code>equality_comparable_with</code>, <code>totally_ordered_with</code>, and <code>three_way_comparable_with</code></a></li>
543544
</ul></div>
544545

545546
</div>

reference/concepts/equality_comparable.html

Lines changed: 5 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-08-31T12:46:41">
192-
2025年08月31日 12時46分41秒
191+
<span itemprop="datePublished" content="2026-02-24T03:22:12">
192+
2026年02月24日 03時22分12秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Raclamusi</span>
196+
<span itemprop="name">Akira Takahashi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -251,7 +251,7 @@ <h2>要件</h2>
251251
<p><div class="codehilite"><pre><span></span><code><span class="k">template</span><span class="o">&lt;</span><span class="k">class</span> <span class="nc">T</span><span class="p">,</span> <span class="k">class</span> <span class="nc">U</span><span class="o">&gt;</span>
252252
<span class="n">concept</span> <span class="n">equality_comparable_with</span> <span class="o">=</span>
253253
<span class="n"><a href="">equality_comparable</a></span><span class="o">&lt;</span><span class="n">T</span><span class="o">&gt;</span> <span class="o">&amp;&amp;</span> <span class="n"><a href="">equality_comparable</a></span><span class="o">&lt;</span><span class="n">U</span><span class="o">&gt;</span> <span class="o">&amp;&amp;</span>
254-
<span class="n"><a href="common_reference_with.html">common_reference_with</a></span><span class="o">&lt;</span><span class="k">const</span> <span class="n"><a href="../type_traits/remove_reference.html">remove_reference_t</a></span><span class="o">&lt;</span><span class="n">T</span><span class="o">&gt;&amp;</span><span class="p">,</span> <span class="k">const</span> <span class="n"><a href="../type_traits/remove_reference.html">remove_reference_t</a></span><span class="o">&lt;</span><span class="n">U</span><span class="o">&gt;&amp;&gt;</span> <span class="o">&amp;&amp;</span>
254+
<span class="n"><a href="../exposition-only/comparison-common-type-with.html">comparison-common-type-with</a></span><span class="o">&lt;</span><span class="n">T</span><span class="p">,</span> <span class="n">U</span><span class="o">&gt;</span> <span class="o">&amp;&amp;</span>
255255
<span class="n"><a href="">equality_comparable</a></span><span class="o">&lt;</span>
256256
<span class="n"><a href="../type_traits/common_reference.html">common_reference_t</a></span><span class="o">&lt;</span>
257257
<span class="k">const</span> <span class="n"><a href="../type_traits/remove_reference.html">remove_reference_t</a></span><span class="o">&lt;</span><span class="n">T</span><span class="o">&gt;&amp;</span><span class="p">,</span>
@@ -443,6 +443,7 @@ <h2>参照</h2>
443443
<ul>
444444
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0898r3.pdf" target="_blank">P0898R3 Standard Library Concepts</a></li>
445445
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p1754r1.pdf" target="_blank">P1754R1 Rename concepts to standard_case for C++20, while we still can</a></li>
446+
<li><a href="https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2404r3.pdf" target="_blank">P2404R3 Move-only types for <code>equality_comparable_with</code>, <code>totally_ordered_with</code>, and <code>three_way_comparable_with</code></a></li>
446447
<li><a href="https://ja.wikipedia.org/wiki/同値関係" target="_blank">同値関係 - wikipedia</a></li>
447448
</ul></div>
448449

reference/concepts/totally_ordered.html

Lines changed: 4 additions & 3 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-08-31T12:46:41">
192-
2025年08月31日 12時46分41秒
191+
<span itemprop="datePublished" content="2026-02-24T03:22:12">
192+
2026年02月24日 03時22分12秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Raclamusi</span>
196+
<span itemprop="name">Akira Takahashi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -418,6 +418,7 @@ <h2>参照</h2>
418418
<ul>
419419
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0898r3.pdf" target="_blank">P0898R3 Standard Library Concepts</a></li>
420420
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p1754r1.pdf" target="_blank">P1754R1 Rename concepts to standard_case for C++20, while we still can</a></li>
421+
<li><a href="https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2404r3.pdf" target="_blank">P2404R3 Move-only types for <code>equality_comparable_with</code>, <code>totally_ordered_with</code>, and <code>three_way_comparable_with</code></a></li>
421422
<li><a href="https://wg21.cmeerw.net/lwg/issue3329" target="_blank">LWG Issue 3329. <code>totally_ordered_with</code> both directly and indirectly requires <code>common_reference_with</code></a></li>
422423
<li><a href="https://wg21.cmeerw.net/lwg/issue3331" target="_blank">LWG Issue 3331. Define <code>totally_ordered/_with</code> in terms of <code>partially-ordered-with</code></a></li>
423424
</ul></div>

0 commit comments

Comments
 (0)