22<feed xmlns =" http://www.w3.org/2005/Atom" >
33 <title >cpprefjp - C++日本語リファレンス</title >
44 <link href =" https://cpprefjp.github.io" />
5- <updated >2025-11-13T06:46:00.688314 </updated >
6- <id >52d321fc-93dc-494c-861e-2ca0b5798d1f </id >
5+ <updated >2025-11-13T11:43:52.968930 </updated >
6+ <id >1e4795ce-5e02-4b63-ad98-439cf961d2fc </id >
77
88
9+ <entry >
10+ <title >operator< => -- fix typo of arguments name in std::optional::< => </title >
11+ <link href =" https://cpprefjp.github.io/reference/optional/optional/op_compare_3way.html" />
12+ <id >ea2968139416092204d3b893f40265b093e12d06:reference/optional/optional/op_compare_3way.md</id >
13+ <updated >2025-11-13T20:39:17+09:00</updated >
14+
15+ <summary type =" html" >< pre>< code> diff --git a/reference/optional/optional/op_compare_3way.md b/reference/optional/optional/op_compare_3way.md
16+ index 0cd38a58e..7dca3129c 100644
17+ --- a/reference/optional/optional/op_compare_3way.md
18+ +++ b/reference/optional/optional/op_compare_3way.md
19+ @@ -12,11 +12,11 @@ namespace std {
20+
21+ template & lt;class T& gt;
22+ constexpr strong_ordering
23+ - operator& lt;=& gt;(const optional& lt;T& gt;& amp;, nullopt_t) noexcept; // (2) C++20
24+ + operator& lt;=& gt;(const optional& lt;T& gt;& amp; x, nullopt_t) noexcept; // (2) C++20
25+
26+ template & lt;class T, three_way_comparable_with& lt;T& gt; U& gt;
27+ constexpr compare_three_way_result_t& lt;T,U& gt;
28+ - operator& lt;=& gt;(const optional& lt;T& gt;& amp; x, const U& amp; y); // (3) C++20
29+ + operator& lt;=& gt;(const optional& lt;T& gt;& amp; x, const U& amp; v); // (3) C++20
30+ }
31+ ```
32+ * nullopt_t[link /reference/optional/nullopt_t.md]
33+ < /code>< /pre> </summary >
34+
35+ <author >
36+ <name >suomesta</name >
37+ 38+ </author >
39+ </entry >
40+
941 <entry >
1042 <title >C++26 -- nolinkを解除</title >
1143 <link href =" https://cpprefjp.github.io/lang/cpp26.html" />
@@ -1374,31 +1406,4 @@ index 25d12448c..fc2fc337d 100644
13741406 </author >
13751407 </entry >
13761408
1377- <entry >
1378- <title >substr -- fix typo</title >
1379- <link href =" https://cpprefjp.github.io/reference/string/basic_string/substr.html" />
1380- <id >63f0d13897c451ba1dad7dc5fe76124e5a6e2d10:reference/string/basic_string/substr.md</id >
1381- <updated >2025-11-05T20:18:00+09:00</updated >
1382-
1383- <summary type =" html" >< pre>< code> diff --git a/reference/string/basic_string/substr.md b/reference/string/basic_string/substr.md
1384- index 44120e2a8..721573102 100644
1385- --- a/reference/string/basic_string/substr.md
1386- +++ b/reference/string/basic_string/substr.md
1387- @@ -107,7 +107,7 @@ int main()
1388- std::string result3 = std::string(& #34;hello& #34;).substr(5, 4);
1389-
1390- // C++20 : sから部分文字列のstringをコピーして作成、sは変更されない
1391- - // C++23 : sのリソースを再利用して部分文字列を保持するstringオブジェクトを作成、aは有効だが未規定な状態となる(C++23における動作変更)
1392- + // C++23 : sのリソースを再利用して部分文字列を保持するstringオブジェクトを作成、sは有効だが未規定な状態となる(C++23における動作変更)
1393- std::string result4 = std::move(s).substr(5, 4);
1394- }
1395- ```
1396- < /code>< /pre> </summary >
1397-
1398- <author >
1399- <name >suomesta</name >
1400- 1401- </author >
1402- </entry >
1403-
14041409</feed >
0 commit comments