Skip to content

Commit 06da470

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 62f211b commit 06da470

File tree

3 files changed

+33
-65
lines changed

3 files changed

+33
-65
lines changed

reference/execution/execution/with_awaitable_senders.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@
200200

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2025-05-30T08:05:25">
204-
2025年05月30日 08時05分25秒
203+
<span itemprop="datePublished" content="2025-05-30T08:17:23">
204+
2025年05月30日 08時17分23秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -412,7 +412,7 @@ <h3>処理系</h3>
412412
</ul>
413413
<h2>関連項目</h2>
414414
<ul>
415-
<li><code><span href="https://cpprefjp.github.io/reference/execution/execution/as_awaitable.md.nolink">execution::as_awaitable</span></code></li>
415+
<li><code><span href="https://cpprefjp.github.io/reference/execution/execution/as_awaitable.md.nolink">execution::as_awaitable</span></code></li>
416416
<li><a href="../../../lang/cpp20/coroutines.html">コルーチン</a></li>
417417
</ul>
418418
<h2>参照</h2>

rss.xml

Lines changed: 29 additions & 61 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>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>
77

88

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">&lt;pre&gt;&lt;code&gt;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+
&lt;/code&gt;&lt;/pre&gt;</summary>
29+
30+
<author>
31+
<name>yoh</name>
32+
<email>[email protected]</email>
33+
</author>
34+
</entry>
35+
936
<entry>
1037
<title>execution -- execution: with_awaitable_senders (#1384)</title>
1138
<link href="https://cpprefjp.github.io/reference/execution/execution.html"/>
@@ -1164,63 +1191,4 @@ index 000000000..657d05de9
11641191
</author>
11651192
</entry>
11661193

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">&lt;pre&gt;&lt;code&gt;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&amp;lt;string&amp;gt; words = {&amp;#34;the&amp;#34;, &amp;#34;quick&amp;#34;, &amp;#34;brown&amp;#34;, &amp;#34;fox&amp;#34;, &amp;#34;ate&amp;#34;, &amp;#34;a&amp;#34;, &amp;#34;pterodactyl&amp;#34;};
1182-
-vector&amp;lt;string&amp;gt; new_words;
1183-
-ranges::copy(words | views::as_rvalue, back_inserter(new_words));
1184-
+std::vector&amp;lt;std::string&amp;gt; words = {&amp;#34;the&amp;#34;, &amp;#34;quick&amp;#34;, &amp;#34;brown&amp;#34;, &amp;#34;fox&amp;#34;, &amp;#34;ate&amp;#34;, &amp;#34;a&amp;#34;, &amp;#34;pterodactyl&amp;#34;};
1185-
+std::vector&amp;lt;std::string&amp;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 &amp;lt;ranges&amp;gt;
1194-
#include &amp;lt;vector&amp;gt;
1195-
#include &amp;lt;iterator&amp;gt;
1196-
+#include &amp;lt;algorithm&amp;gt;
1197-
#include &amp;lt;print&amp;gt;
1198-
1199-
int main() {
1200-
- using namespace std;
1201-
-
1202-
- vector&amp;lt;string&amp;gt; words = {&amp;#34;the&amp;#34;, &amp;#34;quick&amp;#34;, &amp;#34;brown&amp;#34;, &amp;#34;fox&amp;#34;, &amp;#34;ate&amp;#34;, &amp;#34;a&amp;#34;, &amp;#34;pterodactyl&amp;#34;};
1203-
- vector&amp;lt;string&amp;gt; new_words;
1204-
- ranges::copy(words | views::as_rvalue, back_inserter(new_words));
1205-
- print(&amp;#34;{}&amp;#34;, new_words);
1206-
+ std::vector&amp;lt;std::string&amp;gt; words = {&amp;#34;the&amp;#34;, &amp;#34;quick&amp;#34;, &amp;#34;brown&amp;#34;, &amp;#34;fox&amp;#34;, &amp;#34;ate&amp;#34;, &amp;#34;a&amp;#34;, &amp;#34;pterodactyl&amp;#34;};
1207-
+ std::vector&amp;lt;std::string&amp;gt; new_words;
1208-
+ std::ranges::copy(words | std::views::as_rvalue, std::back_inserter(new_words));
1209-
+ std::println(&amp;#34;{}&amp;#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-
&lt;/code&gt;&lt;/pre&gt;</summary>
1219-
1220-
<author>
1221-
<name>Akira Takahashi</name>
1222-
<email>[email protected]</email>
1223-
</author>
1224-
</entry>
1225-
12261194
</feed>

sitemap.xml

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

1427714277
<url>
1427814278
<loc>https://cpprefjp.github.io/reference/execution/execution/with_awaitable_senders.html</loc>
14279-
<lastmod>2025-05-30T17:05:25+09:00</lastmod>
14279+
<lastmod>2025-05-30T17:17:23+09:00</lastmod>
1428014280
<changefreq>daily</changefreq>
1428114281
<priority>0.6</priority>
1428214282
</url>

0 commit comments

Comments
 (0)