-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrss.xml
More file actions
326 lines (278 loc) · 13.8 KB
/
rss.xml
File metadata and controls
326 lines (278 loc) · 13.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>cpprefjp - C++日本語リファレンス</title>
<link href="https://cpprefjp.github.io" />
<updated>2026-06-01T19:31:20.697112</updated>
<id>10e43d77-081b-4cab-a536-3006336b649a</id>
<entry>
<title>concat_view -- views::concat : Clang 23で実装されたので動作確認した</title>
<link href="https://cpprefjp.github.io/reference/ranges/concat_view.html"/>
<id>c41fb937271566602f01b35d4f6c34931f9c44ad:reference/ranges/concat_view.md</id>
<updated>2026-06-01T18:02:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ranges/concat_view.md b/reference/ranges/concat_view.md
index 69bb43888..a7848b13c 100644
--- a/reference/ranges/concat_view.md
+++ b/reference/ranges/concat_view.md
@@ -133,7 +133,10 @@ namespace std::ranges {
## 例
```cpp example
-import std;
+#include &lt;vector&gt;
+#include &lt;array&gt;
+#include &lt;ranges&gt;
+#include &lt;print&gt;
int main() {
std::vector&lt;int&gt; v1{1, 2, 3}, v2{4, 5}, v3{};
@@ -155,7 +158,7 @@ int main() {
- C++26
### 処理系
-- [Clang](/implementation.md#clang): 20 [mark noimpl]
+- [Clang](/implementation.md#clang): 23 [mark verified]
- [GCC](/implementation.md#gcc): 15 [mark verified]
- [Visual C++](/implementation.md#visual_cpp): 2022 Update 14 [mark noimpl]
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>begin -- views::concat : Clang 23で実装されたので動作確認した</title>
<link href="https://cpprefjp.github.io/reference/ranges/concat_view/begin.html"/>
<id>c41fb937271566602f01b35d4f6c34931f9c44ad:reference/ranges/concat_view/begin.md</id>
<updated>2026-06-01T18:02:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ranges/concat_view/begin.md b/reference/ranges/concat_view/begin.md
index 01986d7ae..23ee0487a 100644
--- a/reference/ranges/concat_view/begin.md
+++ b/reference/ranges/concat_view/begin.md
@@ -54,6 +54,6 @@ int main() {
- C++26
### 処理系
-- [Clang](/implementation.md#clang): 20 [mark noimpl]
+- [Clang](/implementation.md#clang): 23 [mark verified]
- [GCC](/implementation.md#gcc): 15 [mark verified]
- [Visual C++](/implementation.md#visual_cpp): 2022 Update 14 [mark noimpl]
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>end -- views::concat : Clang 23で実装されたので動作確認した</title>
<link href="https://cpprefjp.github.io/reference/ranges/concat_view/end.html"/>
<id>c41fb937271566602f01b35d4f6c34931f9c44ad:reference/ranges/concat_view/end.md</id>
<updated>2026-06-01T18:02:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ranges/concat_view/end.md b/reference/ranges/concat_view/end.md
index 992c02a50..df17e204b 100644
--- a/reference/ranges/concat_view/end.md
+++ b/reference/ranges/concat_view/end.md
@@ -57,6 +57,6 @@ int main() {
- C++26
### 処理系
-- [Clang](/implementation.md#clang): 20 [mark noimpl]
+- [Clang](/implementation.md#clang): 23 [mark verified]
- [GCC](/implementation.md#gcc): 15 [mark verified]
- [Visual C++](/implementation.md#visual_cpp): 2022 Update 14 [mark noimpl]
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>コンストラクタ -- views::concat : Clang 23で実装されたので動作確認した</title>
<link href="https://cpprefjp.github.io/reference/ranges/concat_view/op_constructor.html"/>
<id>c41fb937271566602f01b35d4f6c34931f9c44ad:reference/ranges/concat_view/op_constructor.md</id>
<updated>2026-06-01T18:02:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ranges/concat_view/op_constructor.md b/reference/ranges/concat_view/op_constructor.md
index 0d1be8934..78f6057a1 100644
--- a/reference/ranges/concat_view/op_constructor.md
+++ b/reference/ranges/concat_view/op_constructor.md
@@ -56,6 +56,6 @@ int main() {
- C++26
### 処理系
-- [Clang](/implementation.md#clang): 20 [mark noimpl]
+- [Clang](/implementation.md#clang): 23 [mark verified]
- [GCC](/implementation.md#gcc): 15 [mark verified]
- [Visual C++](/implementation.md#visual_cpp): 2022 Update 14 [mark noimpl]
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>推論補助 -- views::concat : Clang 23で実装されたので動作確認した</title>
<link href="https://cpprefjp.github.io/reference/ranges/concat_view/op_deduction_guide.html"/>
<id>c41fb937271566602f01b35d4f6c34931f9c44ad:reference/ranges/concat_view/op_deduction_guide.md</id>
<updated>2026-06-01T18:02:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ranges/concat_view/op_deduction_guide.md b/reference/ranges/concat_view/op_deduction_guide.md
index 0f91c5166..fbedf37ac 100644
--- a/reference/ranges/concat_view/op_deduction_guide.md
+++ b/reference/ranges/concat_view/op_deduction_guide.md
@@ -65,6 +65,6 @@ int main() {
- C++26
### 処理系
-- [Clang](/implementation.md#clang): 20 [mark noimpl]
+- [Clang](/implementation.md#clang): 23 [mark verified]
- [GCC](/implementation.md#gcc): 15 [mark verified]
- [Visual C++](/implementation.md#visual_cpp): 2022 Update 14 [mark noimpl]
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>size -- views::concat : Clang 23で実装されたので動作確認した</title>
<link href="https://cpprefjp.github.io/reference/ranges/concat_view/size.html"/>
<id>c41fb937271566602f01b35d4f6c34931f9c44ad:reference/ranges/concat_view/size.md</id>
<updated>2026-06-01T18:02:12+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/ranges/concat_view/size.md b/reference/ranges/concat_view/size.md
index 8fd66ab5d..33e9b3caf 100644
--- a/reference/ranges/concat_view/size.md
+++ b/reference/ranges/concat_view/size.md
@@ -63,6 +63,6 @@ distance: 8
- C++26
### 処理系
-- [Clang](/implementation.md#clang): 20 [mark noimpl]
+- [Clang](/implementation.md#clang): 23 [mark verified]
- [GCC](/implementation.md#gcc): 15 [mark verified]
- [Visual C++](/implementation.md#visual_cpp): 2022 Update 14 [mark noimpl]
</code></pre></summary>
<author>
<name>Akira Takahashi</name>
<email>faithandbrave@gmail.com</email>
</author>
</entry>
<entry>
<title>handle -- Update handle.md</title>
<link href="https://cpprefjp.github.io/reference/format/basic_format_arg/handle.html"/>
<id>2b9d9db61e0a59c9dd609023ab1658490d203582:reference/format/basic_format_arg/handle.md</id>
<updated>2026-06-01T03:20:27+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/format/basic_format_arg/handle.md b/reference/format/basic_format_arg/handle.md
index c4344d873..7c7d88e1d 100644
--- a/reference/format/basic_format_arg/handle.md
+++ b/reference/format/basic_format_arg/handle.md
@@ -35,7 +35,7 @@ namespace std {
template&lt;class T&gt; explicit handle(const T&amp; val) noexcept
:ptr_(addressof(val))
- ,format_function(
+ ,format_(
[](basic_format_parse_context&lt;charT&gt;&amp; parse_ctx, Context&amp; format_ctx, const void* ptr) {
typename Context::template formatter_type&lt;T&gt; f;
parse_ctx.advance_to(f.parse(parse_ctx));
</code></pre></summary>
<author>
<name>Tetsuro Matsumura</name>
<email>matsumura.t.lab@gmail.com</email>
</author>
</entry>
<entry>
<title>コンストラクタ -- Update basic_format_arg/op_constructor.md</title>
<link href="https://cpprefjp.github.io/reference/format/basic_format_arg/op_constructor.html"/>
<id>82fa1accd3f9cb922a8728491ee3f2d820e267a2:reference/format/basic_format_arg/op_constructor.md</id>
<updated>2026-06-01T03:17:56+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/format/basic_format_arg/op_constructor.md b/reference/format/basic_format_arg/op_constructor.md
index 1d1958ca8..d4b02745c 100644
--- a/reference/format/basic_format_arg/op_constructor.md
+++ b/reference/format/basic_format_arg/op_constructor.md
@@ -45,7 +45,8 @@ namespace std {
## テンプレートパラメーター制約
- (2):
- - `T`はフォーマットできる型であること
+ - (C++20) `T`はフォーマットできる型であること
+ - (C++23) `T`は [`formattable-with`](../formattable.md)`&lt;Context&gt;`を満たすこと
## 事前条件
@@ -91,4 +92,4 @@ namespace std {
- [P0645R10 Text Formatting](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p0645r10.html)
- [P3391R2 `constexpr std::format`](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3391r2.html)
- - C++26から`constexpr`に対応した
\ No newline at end of file
+ - C++26から`constexpr`に対応した
</code></pre></summary>
<author>
<name>Tetsuro Matsumura</name>
<email>matsumura.t.lab@gmail.com</email>
</author>
</entry>
<entry>
<title>formattable -- Update formattable.md</title>
<link href="https://cpprefjp.github.io/reference/format/formattable.html"/>
<id>7884e2f3d9bb5a283294f0c17b4ebe930ccd0b75:reference/format/formattable.md</id>
<updated>2026-05-30T21:10:14+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/format/formattable.md b/reference/format/formattable.md
index c71e840cf..e4ea4fb04 100644
--- a/reference/format/formattable.md
+++ b/reference/format/formattable.md
@@ -16,7 +16,7 @@ namespace std {
const Formatter&amp; cf,
T&amp;&amp; t,
Context fc,
- basic_format_parse_context&lt;charT&gt; pc) {
+ basic_format_parse_context&lt;typename Context::char_type&gt; pc) {
{ f.parse(pc) } -&gt; same_as&lt;typename decltype(pc)::iterator&gt;;
{ cf.format(t, fc) } -&gt; same_as&lt;typename Context::iterator&gt;;
};
</code></pre></summary>
<author>
<name>Tetsuro Matsumura</name>
<email>matsumura.t.lab@gmail.com</email>
</author>
</entry>
<entry>
<title>formattable -- Update formattable.md</title>
<link href="https://cpprefjp.github.io/reference/format/formattable.html"/>
<id>641ed17ce44326bfe6ceee11ed0f9affc7f31f83:reference/format/formattable.md</id>
<updated>2026-05-30T17:33:15+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/format/formattable.md b/reference/format/formattable.md
index e040cd16f..c71e840cf 100644
--- a/reference/format/formattable.md
+++ b/reference/format/formattable.md
@@ -9,21 +9,26 @@ namespace std {
template &lt;class charT&gt;
using fmt-iter-for = unspecified;
- template &lt;class T, class charT&gt;
- concept formattable =
- semiregular&lt;formatter&lt;remove_cvref_t&lt;T&gt;, charT&gt;&gt; &amp;&amp;
- requires(formatter&lt;remove_cvref_t&lt;T&gt;, charT&gt; f,
- const formatter&lt;remove_cvref_t&lt;T&gt;, charT&gt; cf,
- T t,
- basic_format_context&lt;fmt-iter-for&lt;charT&gt;, charT&gt; fc,
+ template &lt;class T, class Context, class Formatter = typename Context::template formatter_type&lt;remove_const_t&lt;T&gt;&gt;&gt;&gt;
+ concept formattable-with = // 説明専用
+ semiregular&lt;Formatter&gt; &amp;&amp;
+ requires(Formatter&amp; f,
+ const Formatter&amp; cf,
+ T&amp;&amp; t,
+ Context fc,
basic_format_parse_context&lt;charT&gt; pc) {
- { f.parse(pc) } -&gt; same_as&lt;basic_format_parse_context&lt;charT&gt;::iterator&gt;;
- { cf.format(t, fc) } -&gt; same_as&lt;fmt-iter-for&lt;charT&gt;&gt;;
+ { f.parse(pc) } -&gt; same_as&lt;typename decltype(pc)::iterator&gt;;
+ { cf.format(t, fc) } -&gt; same_as&lt;typename Context::iterator&gt;;
};
+
+ template &lt;class T, class charT&gt;
+ concept formattable =
+ formattable-with&lt;remove_reference_t&lt;T&gt;, basic_format_context&lt;fmt-iter-for&lt;charT&gt;&gt;&gt;;
}
```
* fmt-iter-for[italic]
* unspecified[italic]
+* formattable-with[italic]
* formatter[link formatter.md]
* semiregular[link /reference/concepts/semiregular.md]
* basic_format_context[link basic_format_context.md]
@@ -73,3 +78,4 @@ hello
## 参照
- [P2286R8 Formatting Ranges](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2286r8.html)
+- [N4950 22.14.6.2 Concept formattable](https://timsong-cpp.github.io/cppwp/n4950/format.formattable#concept:formattable-with)
</code></pre></summary>
<author>
<name>Tetsuro Matsumura</name>
<email>matsumura.t.lab@gmail.com</email>
</author>
</entry>
</feed>