Skip to content

Commit 42faa32

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 1e12ad0 commit 42faa32

File tree

3 files changed

+37
-39
lines changed

3 files changed

+37
-39
lines changed

reference/cctype/isspace.html

Lines changed: 3 additions & 9 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-04-30T03:55:02">
192-
2025年04月30日 03時55分02秒
191+
<span itemprop="datePublished" content="2025-05-03T03:01:40">
192+
2025年05月03日 03時01分40秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -249,13 +249,7 @@ <h2>出力例</h2>
249249
isspace(' ') = 8192
250250
isspace('\n') = 8192
251251
isspace('0x0f') = 0
252-
</code></pre></p>
253-
<h2>実装例</h2>
254-
<p><div class="codehilite"><pre><span></span><code><span class="kt">int</span> <span class="nf">isspace</span><span class="p">(</span><span class="kt">int</span> <span class="n">ch</span><span class="p">)</span> <span class="p">{</span>
255-
<span class="k">return</span> <span class="n">ch</span> <span class="o">==</span> <span class="sc">' '</span> <span class="o">||</span> <span class="n">ch</span> <span class="o">==</span> <span class="sc">'\t'</span> <span class="o">||</span> <span class="n">ch</span> <span class="o">==</span> <span class="sc">'\r'</span> <span class="o">||</span> <span class="n">ch</span> <span class="o">==</span> <span class="sc">'\n'</span> <span class="o">||</span> <span class="n">ch</span> <span class="o">==</span> <span class="sc">'\v'</span> <span class="o">||</span> <span class="n">ch</span> <span class="o">==</span> <span class="sc">'\f'</span><span class="p">;</span>
256-
<span class="p">}</span>
257-
</code></pre></div>
258-
</p></div>
252+
</code></pre></p></div>
259253

260254
</div>
261255
</div>

rss.xml

Lines changed: 33 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,41 @@
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-03T03:00:44.579529</updated>
6-
<id>73297890-1227-45f2-9ed5-8f352b36c2e0</id>
5+
<updated>2025-05-03T03:05:35.527102</updated>
6+
<id>5c7663a3-bf45-4e2b-bd01-e81fc1a07548</id>
77

88

9+
<entry>
10+
<title>isspace -- Revert &#34;reference/cctype/isspace.md: Created sample implementation&#34;</title>
11+
<link href="https://cpprefjp.github.io/reference/cctype/isspace.html"/>
12+
<id>2750049cc5adfcd9b6a3daa17c1860409ea62b8e:reference/cctype/isspace.md</id>
13+
<updated>2025-05-03T12:01:40+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cctype/isspace.md b/reference/cctype/isspace.md
16+
index 26a1e8f7f..087dd8fc2 100644
17+
--- a/reference/cctype/isspace.md
18+
+++ b/reference/cctype/isspace.md
19+
@@ -50,12 +50,3 @@ isspace(&amp;#39; &amp;#39;) = 8192
20+
isspace(&amp;#39;\n&amp;#39;) = 8192
21+
isspace(&amp;#39;0x0f&amp;#39;) = 0
22+
```
23+
-
24+
-## 実装例
25+
-```cpp
26+
-int isspace(int ch) {
27+
- return ch == &amp;#39; &amp;#39; || ch == &amp;#39;\t&amp;#39; || ch == &amp;#39;\r&amp;#39; || ch == &amp;#39;\n&amp;#39; || ch == &amp;#39;\v&amp;#39; || ch == &amp;#39;\f&amp;#39;;
28+
-}
29+
-```
30+
-
31+
-
32+
&lt;/code&gt;&lt;/pre&gt;</summary>
33+
34+
<author>
35+
<name>rotarymars</name>
36+
<email>[email protected]</email>
37+
</author>
38+
</entry>
39+
940
<entry>
1041
<title>islower -- fix: Fixed wrong implementation code for islower()</title>
1142
<link href="https://cpprefjp.github.io/reference/cctype/islower.html"/>
@@ -809,31 +840,4 @@ index 4f118a77d..d3f5519aa 100644
809840
</author>
810841
</entry>
811842

812-
<entry>
813-
<title>basic-operation -- execution/basic-operation: fix inner links</title>
814-
<link href="https://cpprefjp.github.io/reference/execution/execution/basic-operation.html"/>
815-
<id>5e7c6ee264d5044b5c94d2f1a49e74b84df6edce:reference/execution/execution/basic-operation.md</id>
816-
<updated>2025-05-02T17:18:07+09:00</updated>
817-
818-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/execution/execution/basic-operation.md b/reference/execution/execution/basic-operation.md
819-
index 7ac6e0592..f1181fa9d 100644
820-
--- a/reference/execution/execution/basic-operation.md
821-
+++ b/reference/execution/execution/basic-operation.md
822-
@@ -111,7 +111,7 @@ using indices-for = remove_reference_t&amp;lt;Sndr&amp;gt;::indices-for; // exposition only
823-
824-
説明専用の定数`connect-all`は、下記ラムダ式と等価な関数呼び出し可能なオブジェクトとして初期化される。
825-
826-
-- 全ての子Sender`child`とSenderアルゴリズム`sndr`の[Receiver](basic-receiver.md)を[接続(connect)](connec.md)し、結果の[Operation State](operation_state.md)リストを[`product-type`](product-type.md.nolink)型にまとめて返す。
827-
+- 全ての子Sender`child`とSenderアルゴリズム`sndr`の[Receiver](basic-receiver.md.nolink)を[接続(connect)](connect.md)し、結果の[Operation State](operation_state.md)リストを[`product-type`](product-type.md.nolink)型にまとめて返す。
828-
829-
```cpp
830-
[]&amp;lt;class Sndr, class Rcvr, size_t... Is&amp;gt;(
831-
&lt;/code&gt;&lt;/pre&gt;</summary>
832-
833-
<author>
834-
<name>yoh</name>
835-
<email>[email protected]</email>
836-
</author>
837-
</entry>
838-
839843
</feed>

sitemap.xml

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

3657236572
<url>
3657336573
<loc>https://cpprefjp.github.io/reference/cctype/isspace.html</loc>
36574-
<lastmod>2025-04-30T12:55:02+09:00</lastmod>
36574+
<lastmod>2025-05-03T12:01:40+09:00</lastmod>
3657536575
<changefreq>daily</changefreq>
3657636576
<priority>0.7</priority>
3657736577
</url>

0 commit comments

Comments
 (0)