Skip to content

Commit 1f1243b

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent fac668b commit 1f1243b

File tree

4 files changed

+65
-46
lines changed

4 files changed

+65
-46
lines changed

reference/spanstream/basic_spanstream.html

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

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-08-11T06:35:16">
192-
2025年08月11日 06時35分16秒
191+
<span itemprop="datePublished" content="2025-10-11T03:33:07">
192+
2025年10月11日 03時33分07秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -358,7 +358,7 @@ <h2>例</h2>
358358
<h3>出力</h3>
359359
<p><pre><code>Hello 123 World 45.67
360360

361-
word1=Hello, num1=123, word3=World, num2=45.67
361+
word1="Hello", num1=123, word2="World", num2=45.67
362362
</code></pre></p>
363363
<h2>バージョン</h2>
364364
<h3>言語</h3>

reference/spanstream/basic_spanstream/op_constructor.html

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

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2025-08-11T11:41:08">
204-
2025年08月11日 11時41分08秒
203+
<span itemprop="datePublished" content="2025-10-11T03:33:07">
204+
2025年10月11日 03時33分07秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
208-
<span itemprop="name">Akira Takahashi</span>
208+
<span itemprop="name">suomesta</span>
209209
</span>
210210
が更新
211211
</small></p>
@@ -237,7 +237,7 @@ <h2>概要</h2>
237237
<p><code>basic_spanstream</code>オブジェクトを構築する。</p>
238238
<p>ここで、初期値としてデータは、既存のファイルを上書きモードで開くことに似ており、ストリームの初期位置が先頭のまま、ストリーム内容の文字列を設定するものである。</p>
239239
<ul>
240-
<li>(1) : 初期データとして<code><a href="../../span/span.html">std::span&lt;charT&gt;</a></code>オブジェクトの設定して構築する</li>
240+
<li>(1) : 初期データとして<code><a href="../../span/span.html">std::span&lt;charT&gt;</a></code>オブジェクトを指定して構築する</li>
241241
<li>(2) : (削除)コピーコンストラクタ</li>
242242
<li>(3) : ムーブコンストラクタ</li>
243243
</ul>

rss.xml

Lines changed: 56 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,64 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2025-10-10T14:45:38.004209</updated>
6-
<id>0171db9a-6b25-4d6e-879a-f0fe5a12ab5c</id>
5+
<updated>2025-10-11T03:37:34.703321</updated>
6+
<id>3fa311d6-32ea-4ef2-a310-a559445c7a07</id>
77

88

9+
<entry>
10+
<title>basic_spanstream -- fix typo in spanstream</title>
11+
<link href="https://cpprefjp.github.io/reference/spanstream/basic_spanstream.html"/>
12+
<id>3c1eba532a8d1260a39626c01b69986796b17d70:reference/spanstream/basic_spanstream.md</id>
13+
<updated>2025-10-11T12:33:07+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/spanstream/basic_spanstream.md b/reference/spanstream/basic_spanstream.md
16+
index 745e17a61..82b2a6548 100644
17+
--- a/reference/spanstream/basic_spanstream.md
18+
+++ b/reference/spanstream/basic_spanstream.md
19+
@@ -97,7 +97,7 @@ int main()
20+
```
21+
Hello 123 World 45.67
22+
23+
-word1=Hello, num1=123, word3=World, num2=45.67
24+
+word1=&amp;#34;Hello&amp;#34;, num1=123, word2=&amp;#34;World&amp;#34;, num2=45.67
25+
```
26+
27+
28+
&lt;/code&gt;&lt;/pre&gt;</summary>
29+
30+
<author>
31+
<name>suomesta</name>
32+
<email>[email protected]</email>
33+
</author>
34+
</entry>
35+
36+
<entry>
37+
<title>コンストラクタ -- fix typo in spanstream</title>
38+
<link href="https://cpprefjp.github.io/reference/spanstream/basic_spanstream/op_constructor.html"/>
39+
<id>3c1eba532a8d1260a39626c01b69986796b17d70:reference/spanstream/basic_spanstream/op_constructor.md</id>
40+
<updated>2025-10-11T12:33:07+09:00</updated>
41+
42+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/spanstream/basic_spanstream/op_constructor.md b/reference/spanstream/basic_spanstream/op_constructor.md
43+
index 5d92317c0..e40453842 100644
44+
--- a/reference/spanstream/basic_spanstream/op_constructor.md
45+
+++ b/reference/spanstream/basic_spanstream/op_constructor.md
46+
@@ -21,7 +21,7 @@ basic_spanstream(basic_spanstream&amp;amp;&amp;amp; rhs); // (3)
47+
48+
ここで、初期値としてデータは、既存のファイルを上書きモードで開くことに似ており、ストリームの初期位置が先頭のまま、ストリーム内容の文字列を設定するものである。
49+
50+
-- (1) : 初期データとして[`std::span&amp;lt;charT&amp;gt;`](/reference/span/span.md)オブジェクトの設定して構築する
51+
+- (1) : 初期データとして[`std::span&amp;lt;charT&amp;gt;`](/reference/span/span.md)オブジェクトを指定して構築する
52+
- (2) : (削除)コピーコンストラクタ
53+
- (3) : ムーブコンストラクタ
54+
55+
&lt;/code&gt;&lt;/pre&gt;</summary>
56+
57+
<author>
58+
<name>suomesta</name>
59+
<email>[email protected]</email>
60+
</author>
61+
</entry>
62+
963
<entry>
1064
<title>C++26 -- atomicクラスにreduction関係のメンバ関数を追加 (#1535) #1515</title>
1165
<link href="https://cpprefjp.github.io/lang/cpp26.html"/>
@@ -6617,39 +6671,4 @@ index b67913eb2..4054207ff 100644
66176671
</author>
66186672
</entry>
66196673

6620-
<entry>
6621-
<title>spawn -- Typo修正</title>
6622-
<link href="https://cpprefjp.github.io/reference/execution/execution/spawn.html"/>
6623-
<id>9e1ab85cca54ead1770ff96999a7c3228d0fb273:reference/execution/execution/spawn.md</id>
6624-
<updated>2025-09-29T18:17:29+09:00</updated>
6625-
6626-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/execution/execution/spawn.md b/reference/execution/execution/spawn.md
6627-
index 60caee00a..4cba44ec7 100644
6628-
--- a/reference/execution/execution/spawn.md
6629-
+++ b/reference/execution/execution/spawn.md
6630-
@@ -13,7 +13,7 @@ namespace std::execution {
6631-
* unspecified[italic]
6632-
6633-
## 概要
6634-
-`spawn`は、入力[Sender](sender.md)に対して[非同期トークンスコープ](scope_token.md))への関連付けを試み、成功時に入力Senderを早期開始(eagerly start)させるSenderコンシューマである。
6635-
+`spawn`は、入力[Sender](sender.md)に対して[非同期トークンスコープ](scope_token.md)への関連付けを試み、成功時に入力Senderを早期開始(eagerly start)させるSenderコンシューマである。
6636-
6637-
6638-
## 効果
6639-
@@ -68,7 +68,6 @@ namespace std::execution {
6640-
説明専用のクラステンプレート`spawn-state`を下記の通り定義する。
6641-
6642-
```cpp
6643-
-🔗
6644-
namespace std::execution {
6645-
template&amp;lt;class Alloc, scope_token Token, sender Sender&amp;gt;
6646-
struct spawn-state : spawn-state-base { // exposition only
6647-
&lt;/code&gt;&lt;/pre&gt;</summary>
6648-
6649-
<author>
6650-
<name>Raclamusi</name>
6651-
<email>[email protected]</email>
6652-
</author>
6653-
</entry>
6654-
66556674
</feed>

sitemap.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20009,7 +20009,7 @@
2000920009

2001020010
<url>
2001120011
<loc>https://cpprefjp.github.io/reference/spanstream/basic_spanstream.html</loc>
20012-
<lastmod>2025-10-04T19:13:40+09:00</lastmod>
20012+
<lastmod>2025-10-11T12:33:07+09:00</lastmod>
2001320013
<changefreq>daily</changefreq>
2001420014
<priority>0.7</priority>
2001520015
</url>
@@ -20128,7 +20128,7 @@
2012820128

2012920129
<url>
2013020130
<loc>https://cpprefjp.github.io/reference/spanstream/basic_spanstream/op_constructor.html</loc>
20131-
<lastmod>2025-10-04T19:13:40+09:00</lastmod>
20131+
<lastmod>2025-10-11T12:33:07+09:00</lastmod>
2013220132
<changefreq>daily</changefreq>
2013320133
<priority>0.6</priority>
2013420134
</url>

0 commit comments

Comments
 (0)