Skip to content

Commit 9285412

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 34fe9cc commit 9285412

File tree

3 files changed

+34
-85
lines changed

3 files changed

+34
-85
lines changed

reference/compare/common_comparison_category.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-07-10T07:47:57">
192-
2024年07月10日 07時47分57秒
191+
<span itemprop="datePublished" content="2024-12-14T19:47:14">
192+
2024年12月14日 19時47分14秒
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">biobios</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -231,7 +231,7 @@ <h2>効果</h2>
231231
<p><code>Ts...</code>の共通比較カテゴリ型となる型をメンバ型<code>type</code>として定義する。</p>
232232
<p><code>Ts...</code>内のそれぞれの型を<code>Ti (0 &lt;= i &lt; N)</code>として、共通比較カテゴリ型<code>U</code>は以下のように決定される。</p>
233233
<ol>
234-
<li><code>Ti</code>の中に一つでも比較カテゴリ型でない型がある場合<code>U = void</code></li>
234+
<li><code>Ti</code>の中に1つでも比較カテゴリ型でない型がある場合<code>U = void</code></li>
235235
<li><code>Ti</code>の中に1つでも<code>partial_ordering</code>がある場合、<code>U = partial_ordering</code></li>
236236
<li><code>Ti</code>の中に1つでも<code>weak_ordering</code>がある場合、<code>U = weak_ordering</code></li>
237237
<li>それ以外の場合、<code>U = strong_ordering</code><code>N == 0</code>の場合)</li>

rss.xml

Lines changed: 29 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,37 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2024-12-14T19:25:51.477327</updated>
6-
<id>6afd8e2f-3ebe-4b70-a31a-dd6ebf450d9f</id>
5+
<updated>2024-12-14T19:50:26.376387</updated>
6+
<id>03336b68-14a6-4401-ba17-13498ad592d7</id>
77

88

9+
<entry>
10+
<title>common_comparison_category -- 表記の統一</title>
11+
<link href="https://cpprefjp.github.io/reference/compare/common_comparison_category.html"/>
12+
<id>a983f3dd3b01a4f60aec4d82bf3cb37222b492ea:reference/compare/common_comparison_category.md</id>
13+
<updated>2024-12-15T04:47:14+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/compare/common_comparison_category.md b/reference/compare/common_comparison_category.md
16+
index ba9a1c749..e14632dab 100644
17+
--- a/reference/compare/common_comparison_category.md
18+
+++ b/reference/compare/common_comparison_category.md
19+
@@ -30,7 +30,7 @@ namespace std {
20+
21+
`Ts...`内のそれぞれの型を`Ti (0 &amp;lt;= i &amp;lt; N)`として、共通比較カテゴリ型`U`は以下のように決定される。
22+
23+
-1. `Ti`の中に一つでも比較カテゴリ型でない型がある場合、`U = void`
24+
+1. `Ti`の中に1つでも比較カテゴリ型でない型がある場合、`U = void`
25+
2. `Ti`の中に1つでも`partial_ordering`がある場合、`U = partial_ordering`
26+
3. `Ti`の中に1つでも`weak_ordering`がある場合、`U = weak_ordering`
27+
4. それ以外の場合、`U = strong_ordering`(`N == 0`の場合)
28+
&lt;/code&gt;&lt;/pre&gt;</summary>
29+
30+
<author>
31+
<name>biobios</name>
32+
<email>[email protected]</email>
33+
</author>
34+
</entry>
35+
936
<entry>
1037
<title>indirectly_readable_traits -- fix type</title>
1138
<link href="https://cpprefjp.github.io/reference/iterator/indirectly_readable_traits.html"/>
@@ -654,82 +681,4 @@ index f7668d166..980f18020 100644
654681
</author>
655682
</entry>
656683

657-
<entry>
658-
<title>operator partial_ordering -- add meta cpp tag</title>
659-
<link href="https://cpprefjp.github.io/reference/compare/strong_ordering/op_partial_ordering.html"/>
660-
<id>17433f40f69bd9debd8b19f1257063fb589dd73b:reference/compare/strong_ordering/op_partial_ordering.md</id>
661-
<updated>2024-12-09T22:04:29+09:00</updated>
662-
663-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/compare/strong_ordering/op_partial_ordering.md b/reference/compare/strong_ordering/op_partial_ordering.md
664-
index 058a26797..b4ebedfe1 100644
665-
--- a/reference/compare/strong_ordering/op_partial_ordering.md
666-
+++ b/reference/compare/strong_ordering/op_partial_ordering.md
667-
@@ -3,6 +3,7 @@
668-
* std[meta namespace]
669-
* strong_ordering[meta class]
670-
* function[meta id-type]
671-
+* cpp20[meta cpp]
672-
673-
```cpp
674-
constexpr operator partial_ordering() const noexcept;
675-
&lt;/code&gt;&lt;/pre&gt;</summary>
676-
677-
<author>
678-
<name>suomesta</name>
679-
<email>[email protected]</email>
680-
</author>
681-
</entry>
682-
683-
<entry>
684-
<title>operator weak_ordering -- add meta cpp tag</title>
685-
<link href="https://cpprefjp.github.io/reference/compare/strong_ordering/op_weak_ordering.html"/>
686-
<id>17433f40f69bd9debd8b19f1257063fb589dd73b:reference/compare/strong_ordering/op_weak_ordering.md</id>
687-
<updated>2024-12-09T22:04:29+09:00</updated>
688-
689-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/compare/strong_ordering/op_weak_ordering.md b/reference/compare/strong_ordering/op_weak_ordering.md
690-
index ab9d56fee..aa1eda64b 100644
691-
--- a/reference/compare/strong_ordering/op_weak_ordering.md
692-
+++ b/reference/compare/strong_ordering/op_weak_ordering.md
693-
@@ -3,6 +3,7 @@
694-
* std[meta namespace]
695-
* strong_ordering[meta class]
696-
* function[meta id-type]
697-
+* cpp20[meta cpp]
698-
699-
```cpp
700-
constexpr operator weak_ordering() const noexcept;
701-
&lt;/code&gt;&lt;/pre&gt;</summary>
702-
703-
<author>
704-
<name>suomesta</name>
705-
<email>[email protected]</email>
706-
</author>
707-
</entry>
708-
709-
<entry>
710-
<title>operator partial_ordering -- add meta cpp tag</title>
711-
<link href="https://cpprefjp.github.io/reference/compare/weak_ordering/op_partial_ordering.html"/>
712-
<id>17433f40f69bd9debd8b19f1257063fb589dd73b:reference/compare/weak_ordering/op_partial_ordering.md</id>
713-
<updated>2024-12-09T22:04:29+09:00</updated>
714-
715-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/compare/weak_ordering/op_partial_ordering.md b/reference/compare/weak_ordering/op_partial_ordering.md
716-
index 8807cea4a..ad6221133 100644
717-
--- a/reference/compare/weak_ordering/op_partial_ordering.md
718-
+++ b/reference/compare/weak_ordering/op_partial_ordering.md
719-
@@ -3,6 +3,7 @@
720-
* std[meta namespace]
721-
* weak_ordering[meta class]
722-
* function[meta id-type]
723-
+* cpp20[meta cpp]
724-
725-
```cpp
726-
constexpr operator partial_ordering() const noexcept;
727-
&lt;/code&gt;&lt;/pre&gt;</summary>
728-
729-
<author>
730-
<name>suomesta</name>
731-
<email>[email protected]</email>
732-
</author>
733-
</entry>
734-
735684
</feed>

sitemap.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25252,7 +25252,7 @@
2525225252

2525325253
<url>
2525425254
<loc>https://cpprefjp.github.io/reference/compare/common_comparison_category.html</loc>
25255-
<lastmod>2024-12-11T11:28:26+09:00</lastmod>
25255+
<lastmod>2024-12-15T04:47:14+09:00</lastmod>
2525625256
<changefreq>daily</changefreq>
2525725257
<priority>0.7</priority>
2525825258
</url>

0 commit comments

Comments
 (0)