2
2
<feed xmlns =" http://www.w3.org/2005/Atom" >
3
3
<title >cpprefjp - C++日本語リファレンス</title >
4
4
<link href =" https://cpprefjp.github.io" />
5
- <updated >2025-05-30T08:10 :31.773019 </updated >
6
- <id >e0d9a11f-879d-4bf2-8cbb-ab422d593dc9 </id >
5
+ <updated >2025-05-30T08:21 :31.229548 </updated >
6
+ <id >e6fd102f-dd4f-4d38-a678-7dc068689c40 </id >
7
7
8
8
9
+ <entry >
10
+ <title >with_awaitable_senders -- execution/with_awaitable_senders: remove forbid chars</title >
11
+ <link href =" https://cpprefjp.github.io/reference/execution/execution/with_awaitable_senders.html" />
12
+ <id >a1eaff0ecb6591461ea27f6eb861a47fdb57d1d9:reference/execution/execution/with_awaitable_senders.md</id >
13
+ <updated >2025-05-30T17:17:23+09:00</updated >
14
+
15
+ <summary type =" html" >< pre>< code> diff --git a/reference/execution/execution/with_awaitable_senders.md b/reference/execution/execution/with_awaitable_senders.md
16
+ index 429e09102..ec76e23ad 100644
17
+ --- a/reference/execution/execution/with_awaitable_senders.md
18
+ +++ b/reference/execution/execution/with_awaitable_senders.md
19
+ @@ -173,7 +173,7 @@ value=42
20
+
21
+
22
+ ## 関連項目
23
+ -- [`execution::as_awaitable`](as_awaitable.md.nolink)
24
+ +- [`execution::as_awaitable`](as_awaitable.md.nolink)
25
+ - [コルーチン](/lang/cpp20/coroutines.md)
26
+
27
+
28
+ < /code>< /pre> </summary >
29
+
30
+ <author >
31
+ <name >yoh</name >
32
+
33
+ </author >
34
+ </entry >
35
+
9
36
<entry >
10
37
<title >execution -- execution: with_awaitable_senders (#1384)</title >
11
38
<link href =" https://cpprefjp.github.io/reference/execution/execution.html" />
@@ -1164,63 +1191,4 @@ index 000000000..657d05de9
1164
1191
</author >
1165
1192
</entry >
1166
1193
1167
- <entry >
1168
- <title >as_rvalue_view -- as_rvalue_view : グローバル修飾が効くようにstd::をつけた #713</title >
1169
- <link href =" https://cpprefjp.github.io/reference/ranges/as_rvalue_view.html" />
1170
- <id >515f73141a9de4600b098df7934924b728afd5f9:reference/ranges/as_rvalue_view.md</id >
1171
- <updated >2025-05-30T13:47:44+09:00</updated >
1172
-
1173
- <summary type =" html" >< pre>< code> diff --git a/reference/ranges/as_rvalue_view.md b/reference/ranges/as_rvalue_view.md
1174
- index 68f163a31..c8b41aee1 100644
1175
- --- a/reference/ranges/as_rvalue_view.md
1176
- +++ b/reference/ranges/as_rvalue_view.md
1177
- @@ -27,10 +27,11 @@ namespace std::ranges {
1178
- この[`view`](view.md)は、あるRangeの要素をムーブして別のコンテナに挿入する場合などに利用できる。
1179
-
1180
- ```cpp
1181
- -vector& lt;string& gt; words = {& #34;the& #34;, & #34;quick& #34;, & #34;brown& #34;, & #34;fox& #34;, & #34;ate& #34;, & #34;a& #34;, & #34;pterodactyl& #34;};
1182
- -vector& lt;string& gt; new_words;
1183
- -ranges::copy(words | views::as_rvalue, back_inserter(new_words));
1184
- +std::vector& lt;std::string& gt; words = {& #34;the& #34;, & #34;quick& #34;, & #34;brown& #34;, & #34;fox& #34;, & #34;ate& #34;, & #34;a& #34;, & #34;pterodactyl& #34;};
1185
- +std::vector& lt;std::string& gt; new_words;
1186
- +std::ranges::copy(words | views::as_rvalue, std::back_inserter(new_words));
1187
- ```
1188
- +* std::ranges::copy[link /reference/algorithm/ranges_copy.md]
1189
-
1190
- ### Rangeコンセプト
1191
-
1192
- @@ -88,19 +89,17 @@ ranges::copy(words | views::as_rvalue, back_inserter(new_words));
1193
- #include & lt;ranges& gt;
1194
- #include & lt;vector& gt;
1195
- #include & lt;iterator& gt;
1196
- +#include & lt;algorithm& gt;
1197
- #include & lt;print& gt;
1198
-
1199
- int main() {
1200
- - using namespace std;
1201
- -
1202
- - vector& lt;string& gt; words = {& #34;the& #34;, & #34;quick& #34;, & #34;brown& #34;, & #34;fox& #34;, & #34;ate& #34;, & #34;a& #34;, & #34;pterodactyl& #34;};
1203
- - vector& lt;string& gt; new_words;
1204
- - ranges::copy(words | views::as_rvalue, back_inserter(new_words));
1205
- - print(& #34;{}& #34;, new_words);
1206
- + std::vector& lt;std::string& gt; words = {& #34;the& #34;, & #34;quick& #34;, & #34;brown& #34;, & #34;fox& #34;, & #34;ate& #34;, & #34;a& #34;, & #34;pterodactyl& #34;};
1207
- + std::vector& lt;std::string& gt; new_words;
1208
- + std::ranges::copy(words | std::views::as_rvalue, std::back_inserter(new_words));
1209
- + std::println(& #34;{}& #34;, new_words);
1210
- }
1211
- ```
1212
- -* views::as_rvalue[color ff0000]
1213
- -* print[link /reference/print/print.md]
1214
- +* std::views::as_rvalue[color ff0000]
1215
-
1216
- ### 出力
1217
- ```
1218
- < /code>< /pre> </summary >
1219
-
1220
- <author >
1221
- <name >Akira Takahashi</name >
1222
-
1223
- </author >
1224
- </entry >
1225
-
1226
1194
</feed >
0 commit comments