-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrss.xml
More file actions
253 lines (216 loc) · 11 KB
/
Copy pathrss.xml
File metadata and controls
253 lines (216 loc) · 11 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
<?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-21T16:19:07.761192</updated>
<id>ea582761-6c15-4b3f-a33f-21333265eb72</id>
<entry>
<title>constant_wrapper -- constant_wrapper: meta aliasタグ追加</title>
<link href="https://cpprefjp.github.io/reference/utility/constant_wrapper.html"/>
<id>ebaeb5d2cf1235c9123f6b6b14bf16dd5e90da07:reference/utility/constant_wrapper.md</id>
<updated>2026-06-21T23:39:30+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/utility/constant_wrapper.md b/reference/utility/constant_wrapper.md
index d44643773..42db28c1c 100644
--- a/reference/utility/constant_wrapper.md
+++ b/reference/utility/constant_wrapper.md
@@ -3,6 +3,7 @@
* std[meta namespace]
* class template[meta id-type]
* cpp26[meta cpp]
+* cw[meta alias]
```cpp
namespace std {
</code></pre></summary>
<author>
<name>yoh</name>
<email>kawasaki.liamg@gmail.com</email>
</author>
</entry>
<entry>
<title>integer_sequence -- integer_sequence : サンプルコードを修正</title>
<link href="https://cpprefjp.github.io/reference/utility/integer_sequence.html"/>
<id>b298a7de06591afd834d04ed16344e5d91bb0cb2:reference/utility/integer_sequence.md</id>
<updated>2026-06-21T17:39:07+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/utility/integer_sequence.md b/reference/utility/integer_sequence.md
index fab2d795f..8ec1d3032 100644
--- a/reference/utility/integer_sequence.md
+++ b/reference/utility/integer_sequence.md
@@ -80,19 +80,26 @@ int main()
#include &lt;iostream&gt;
#include &lt;utility&gt;
-int main()
+// 構造化束縛でパックとして取り出す記法はテンプレート内でのみ利用できる
+template &lt;std::size_t Count&gt;
+void run()
{
// 構造化束縛で整数シーケンスをパックとして取り出す
- constexpr auto [...Index] = std::make_index_sequence&lt;3&gt;();
+ constexpr auto [...Index] = std::make_index_sequence&lt;Count&gt;();
((std::cout &lt;&lt; Index &lt;&lt; &#39; &#39;), ...);
std::cout &lt;&lt; std::endl;
// template for文で整数シーケンスを直接イテレートする
- template for (constexpr std::size_t I : std::make_index_sequence&lt;3&gt;()) {
+ template for (constexpr std::size_t I : std::make_index_sequence&lt;Count&gt;()) {
std::cout &lt;&lt; I &lt;&lt; &#39; &#39;;
}
std::cout &lt;&lt; std::endl;
}
+
+int main()
+{
+ run&lt;3&gt;();
+}
```
* std::make_index_sequence[link make_index_sequence.md]
</code></pre></summary>
<author>
<name>Raclamusi</name>
<email>raclamusi@gmail.com</email>
</author>
</entry>
<entry>
<title>on -- execution::on : 説明用のコードを修正</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/on.html"/>
<id>4717f9936a05953eb142fad9276d9761cbfc5ed3:reference/execution/execution/on.md</id>
<updated>2026-06-21T17:14:28+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/on.md b/reference/execution/execution/on.md
index 48994232e..c738a35b5 100644
--- a/reference/execution/execution/on.md
+++ b/reference/execution/execution/on.md
@@ -71,7 +71,7 @@ if constexpr (scheduler&lt;decltype(data)&gt;) {
auto orig_sch = call-with-default(
get_completion_scheduler&lt;set_value_t&gt;, not-a-scheduler(), get_env(child), env);
return continues_on(
- std::forward_like&lt;OutSndr&gt;(closure)(continues_on(std::forward_like&lt;OutSndr&gt;(child), SCHED-ENV(orig_sch)),
+ std::forward_like&lt;OutSndr&gt;(closure)(continues_on(std::forward_like&lt;OutSndr&gt;(child), sch)),
orig_sch);
}
```
@@ -84,7 +84,6 @@ if constexpr (scheduler&lt;decltype(data)&gt;) {
* get_completion_scheduler[link get_completion_scheduler.md]
* set_value_t[link set_value.md]
* get_env[link get_env.md]
-* SCHED-ENV[link scheduler.md]
* std::move[link /reference/utility/move.md]
</code></pre></summary>
<author>
<name>Raclamusi</name>
<email>raclamusi@gmail.com</email>
</author>
</entry>
<entry>
<title>bulk -- execution : 対応しないカッコを修正</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/bulk.html"/>
<id>dffcef7b475711dec09eec86601a0d5431bf032c:reference/execution/execution/bulk.md</id>
<updated>2026-06-21T17:13:27+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/bulk.md b/reference/execution/execution/bulk.md
index 9e6cf1f82..d836aa445 100644
--- a/reference/execution/execution/bulk.md
+++ b/reference/execution/execution/bulk.md
@@ -34,7 +34,7 @@ namespace std::execution {
そうでなければ、呼び出し式`bulk(sndr, policy, shape, f)`は下記と等価。
```cpp
-make-sender(bulk, product-type&lt;see below, Shape, Func&gt;{policy, shape, f}, sndr))
+make-sender(bulk, product-type&lt;see below, Shape, Func&gt;{policy, shape, f}, sndr)
```
* make-sender[link make-sender.md]
* product-type[link product-type.md]
</code></pre></summary>
<author>
<name>Raclamusi</name>
<email>raclamusi@gmail.com</email>
</author>
</entry>
<entry>
<title>bulk_chunked -- execution : 対応しないカッコを修正</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/bulk_chunked.html"/>
<id>dffcef7b475711dec09eec86601a0d5431bf032c:reference/execution/execution/bulk_chunked.md</id>
<updated>2026-06-21T17:13:27+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/bulk_chunked.md b/reference/execution/execution/bulk_chunked.md
index 0b125aab0..c8bb281fb 100644
--- a/reference/execution/execution/bulk_chunked.md
+++ b/reference/execution/execution/bulk_chunked.md
@@ -34,7 +34,7 @@ namespace std::execution {
そうでなければ、呼び出し式`bulk_chunked(sndr, policy, shape, f)`は下記と等価。
```cpp
-make-sender(bulk_chunked, product-type&lt;see below, Shape, Func&gt;{policy, shape, f}, sndr))
+make-sender(bulk_chunked, product-type&lt;see below, Shape, Func&gt;{policy, shape, f}, sndr)
```
* make-sender[link make-sender.md]
* product-type[link product-type.md]
</code></pre></summary>
<author>
<name>Raclamusi</name>
<email>raclamusi@gmail.com</email>
</author>
</entry>
<entry>
<title>bulk_unchunked -- execution : 対応しないカッコを修正</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/bulk_unchunked.html"/>
<id>dffcef7b475711dec09eec86601a0d5431bf032c:reference/execution/execution/bulk_unchunked.md</id>
<updated>2026-06-21T17:13:27+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/bulk_unchunked.md b/reference/execution/execution/bulk_unchunked.md
index e69ae5dca..1b130f03c 100644
--- a/reference/execution/execution/bulk_unchunked.md
+++ b/reference/execution/execution/bulk_unchunked.md
@@ -34,7 +34,7 @@ namespace std::execution {
そうでなければ、呼び出し式`bulk_unchunked(sndr, policy, shape, f)`は下記と等価。
```cpp
-make-sender(bulk_unchunked, product-type&lt;see below, Shape, Func&gt;{policy, shape, f}, sndr))
+make-sender(bulk_unchunked, product-type&lt;see below, Shape, Func&gt;{policy, shape, f}, sndr)
```
* make-sender[link make-sender.md]
* product-type[link product-type.md]
</code></pre></summary>
<author>
<name>Raclamusi</name>
<email>raclamusi@gmail.com</email>
</author>
</entry>
<entry>
<title>get_scheduler -- execution : 対応しないカッコを修正</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/get_scheduler.html"/>
<id>dffcef7b475711dec09eec86601a0d5431bf032c:reference/execution/execution/get_scheduler.md</id>
<updated>2026-06-21T17:13:27+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/get_scheduler.md b/reference/execution/execution/get_scheduler.md
index 728dc8a79..9dcae87db 100644
--- a/reference/execution/execution/get_scheduler.md
+++ b/reference/execution/execution/get_scheduler.md
@@ -24,7 +24,7 @@ namespace std::execution {
```cpp
get_completion_scheduler&lt;set_value_t&gt;(MANDATE-NOTHROW(AS-CONST(env).query(get_scheduler)), HIDE-SCHED(env))
```
-* get_completion_scheduler[link get_completion_scheduler.md]]
+* get_completion_scheduler[link get_completion_scheduler.md]
* set_value_t[link set_value.md]
* MANDATE-NOTHROW[link MANDATE-NOTHROW.md]
* AS-CONST[link AS-CONST.md]
</code></pre></summary>
<author>
<name>Raclamusi</name>
<email>raclamusi@gmail.com</email>
</author>
</entry>
<entry>
<title>get_completion_scheduler -- get_completion_scheduler : typo修正</title>
<link href="https://cpprefjp.github.io/reference/execution/execution/get_completion_scheduler.html"/>
<id>5564d0f85d82030250c895963e2658c519df7e8a:reference/execution/execution/get_completion_scheduler.md</id>
<updated>2026-06-21T17:13:04+09:00</updated>
<summary type="html"><pre><code>diff --git a/reference/execution/execution/get_completion_scheduler.md b/reference/execution/execution/get_completion_scheduler.md
index c33be436e..30c1f15d5 100644
--- a/reference/execution/execution/get_completion_scheduler.md
+++ b/reference/execution/execution/get_completion_scheduler.md
@@ -48,7 +48,7 @@ namespace std::execution {
* MANDATE-NOTHROW[link MANDATE-NOTHROW.md]
* TRY-QUERY[link ../queryable.md]
-- そうではなく、`envs...`が1回だけ評価されることを除いて、型`q`が[`schedeuler`](scheduler.md)を満たしかつ`envs`が空のパックでないとき、`auto(q)`
+- そうではなく、`envs...`が1回だけ評価されることを除いて、型`q`が[`scheduler`](scheduler.md)を満たしかつ`envs`が空のパックでないとき、`auto(q)`
- そうでなければ、呼び出し式`get_completion_scheduler&lt;completion-tag&gt;(q, envs...)`は不適格となる。
`get_completion_scheduler&lt;completion-tag&gt;(q, envs...)`が適格ならば、その型は[Scheduler](scheduler.md)を満たすべき。
</code></pre></summary>
<author>
<name>Raclamusi</name>
<email>raclamusi@gmail.com</email>
</author>
</entry>
</feed>