Skip to content

Commit b5703d8

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 96cf783 commit b5703d8

File tree

3 files changed

+29
-210
lines changed

3 files changed

+29
-210
lines changed

reference/cstdlib/rand.html

Lines changed: 3 additions & 2 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-07-06T07:36:28">
192-
2025年07月06日 07時36分28秒
191+
<span itemprop="datePublished" content="2025-07-06T07:44:06">
192+
2025年07月06日 07時44分06秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -243,6 +243,7 @@ <h2>関連項目</h2>
243243
<ul>
244244
<li><code><a href="srand.html">srand()</a></code>:この関数の疑似乱数生成器で使用するシード値を決定する。</li>
245245
<li><code><span href="https://cpprefjp.github.io/reference/cstdlib">RAND_MAX</span></code>:この関数で返される疑似乱数の最大値。</li>
246+
<li><code><a href="../random.html">random</a></code>:より安全な乱数生成ライブラリ。</li>
246247
</ul></div>
247248

248249
</div>

rss.xml

Lines changed: 25 additions & 207 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,33 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2025-07-06T07:40:39.786157</updated>
6-
<id>b1961fa9-2b6a-4a3d-a923-c4f82985b93e</id>
5+
<updated>2025-07-06T07:48:19.161190</updated>
6+
<id>09a427cb-f0ab-404e-b3cd-2c9f572b8518</id>
77

88

9+
<entry>
10+
<title>rand -- add path to `random`library</title>
11+
<link href="https://cpprefjp.github.io/reference/cstdlib/rand.html"/>
12+
<id>129dc5c77180cc9f2f6379bd1ff3013fb2b39456:reference/cstdlib/rand.md</id>
13+
<updated>2025-07-06T16:44:06+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cstdlib/rand.md b/reference/cstdlib/rand.md
16+
index e451faa51..057ed18d8 100644
17+
--- a/reference/cstdlib/rand.md
18+
+++ b/reference/cstdlib/rand.md
19+
@@ -44,3 +44,4 @@ int main()
20+
## 関連項目
21+
- [`srand()`](srand.md):この関数の疑似乱数生成器で使用するシード値を決定する。
22+
- [`RAND_MAX`]():この関数で返される疑似乱数の最大値。
23+
+- [`random`](/reference/random.md):より安全な乱数生成ライブラリ。
24+
&lt;/code&gt;&lt;/pre&gt;</summary>
25+
26+
<author>
27+
<name>K10-K10</name>
28+
<email>[email protected]</email>
29+
</author>
30+
</entry>
31+
932
<entry>
1033
<title>srand -- add pat to `ramd.md`</title>
1134
<link href="https://cpprefjp.github.io/reference/cstdlib/srand.html"/>
@@ -992,209 +1015,4 @@ index 0a5decc9e..f8e466185 100644
9921015
</author>
9931016
</entry>
9941017

995-
<entry>
996-
<title>code -- fix some English description</title>
997-
<link href="https://cpprefjp.github.io/reference/filesystem/filesystem_error/code.html"/>
998-
<id>9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/filesystem/filesystem_error/code.md</id>
999-
<updated>2025-07-06T16:12:08+09:00</updated>
1000-
1001-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/filesystem/filesystem_error/code.md b/reference/filesystem/filesystem_error/code.md
1002-
index a17e7e6fa..36fe507ef 100644
1003-
--- a/reference/filesystem/filesystem_error/code.md
1004-
+++ b/reference/filesystem/filesystem_error/code.md
1005-
@@ -29,7 +29,7 @@ int main()
1006-
{
1007-
try {
1008-
throw fs::filesystem_error(
1009-
- &amp;#34;can&amp;#39;t copy file. source file doesn&amp;#39;t found&amp;#34;,
1010-
+ &amp;#34;can&amp;#39;t copy file. source file isn&amp;#39;t found&amp;#34;,
1011-
std::make_error_code(std::errc::no_such_file_or_directory)
1012-
);
1013-
}
1014-
&lt;/code&gt;&lt;/pre&gt;</summary>
1015-
1016-
<author>
1017-
<name>suomesta</name>
1018-
<email>[email protected]</email>
1019-
</author>
1020-
</entry>
1021-
1022-
<entry>
1023-
<title>コンストラクタ -- fix some English description</title>
1024-
<link href="https://cpprefjp.github.io/reference/filesystem/filesystem_error/op_constructor.html"/>
1025-
<id>9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/filesystem/filesystem_error/op_constructor.md</id>
1026-
<updated>2025-07-06T16:12:08+09:00</updated>
1027-
1028-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/filesystem/filesystem_error/op_constructor.md b/reference/filesystem/filesystem_error/op_constructor.md
1029-
index 4c4666798..52b5825db 100644
1030-
--- a/reference/filesystem/filesystem_error/op_constructor.md
1031-
+++ b/reference/filesystem/filesystem_error/op_constructor.md
1032-
@@ -64,7 +64,7 @@ int main()
1033-
// (1)
1034-
try {
1035-
throw fs::filesystem_error(
1036-
- &amp;#34;can&amp;#39;t copy file. source file doesn&amp;#39;t found&amp;#34;,
1037-
+ &amp;#34;can&amp;#39;t copy file. source file isn&amp;#39;t found&amp;#34;,
1038-
std::make_error_code(std::errc::no_such_file_or_directory)
1039-
);
1040-
}
1041-
@@ -75,7 +75,7 @@ int main()
1042-
// (2)
1043-
try {
1044-
throw fs::filesystem_error(
1045-
- &amp;#34;can&amp;#39;t copy file. source file doesn&amp;#39;t found&amp;#34;,
1046-
+ &amp;#34;can&amp;#39;t copy file. source file isn&amp;#39;t found&amp;#34;,
1047-
&amp;#34;a/b.txt&amp;#34;,
1048-
std::make_error_code(std::errc::no_such_file_or_directory)
1049-
);
1050-
@@ -87,7 +87,7 @@ int main()
1051-
// (3)
1052-
try {
1053-
throw fs::filesystem_error(
1054-
- &amp;#34;can&amp;#39;t copy file. source file doesn&amp;#39;t found&amp;#34;,
1055-
+ &amp;#34;can&amp;#39;t copy file. source file isn&amp;#39;t found&amp;#34;,
1056-
&amp;#34;a/from.txt&amp;#34;,
1057-
&amp;#34;b/to.txt&amp;#34;,
1058-
std::make_error_code(std::errc::no_such_file_or_directory)
1059-
@@ -104,9 +104,9 @@ int main()
1060-
1061-
### 出力例
1062-
```
1063-
-filesystem error: can&amp;#39;t copy file. source file doesn&amp;#39;t found: No such file or directory
1064-
-filesystem error: can&amp;#39;t copy file. source file doesn&amp;#39;t found: No such file or directory [a/b.txt]
1065-
-filesystem error: can&amp;#39;t copy file. source file doesn&amp;#39;t found: No such file or directory [a/from.txt] [b/to.txt]
1066-
+filesystem error: can&amp;#39;t copy file. source file isn&amp;#39;t found: No such file or directory
1067-
+filesystem error: can&amp;#39;t copy file. source file isn&amp;#39;t found: No such file or directory [a/b.txt]
1068-
+filesystem error: can&amp;#39;t copy file. source file isn&amp;#39;t found: No such file or directory [a/from.txt] [b/to.txt]
1069-
```
1070-
1071-
## バージョン
1072-
&lt;/code&gt;&lt;/pre&gt;</summary>
1073-
1074-
<author>
1075-
<name>suomesta</name>
1076-
<email>[email protected]</email>
1077-
</author>
1078-
</entry>
1079-
1080-
<entry>
1081-
<title>path1 -- fix some English description</title>
1082-
<link href="https://cpprefjp.github.io/reference/filesystem/filesystem_error/path1.html"/>
1083-
<id>9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/filesystem/filesystem_error/path1.md</id>
1084-
<updated>2025-07-06T16:12:08+09:00</updated>
1085-
1086-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/filesystem/filesystem_error/path1.md b/reference/filesystem/filesystem_error/path1.md
1087-
index 197a5b692..76a68f789 100644
1088-
--- a/reference/filesystem/filesystem_error/path1.md
1089-
+++ b/reference/filesystem/filesystem_error/path1.md
1090-
@@ -29,7 +29,7 @@ int main()
1091-
{
1092-
try {
1093-
throw fs::filesystem_error(
1094-
- &amp;#34;can&amp;#39;t copy file. source file doesn&amp;#39;t found&amp;#34;,
1095-
+ &amp;#34;can&amp;#39;t copy file. source file isn&amp;#39;t found&amp;#34;,
1096-
&amp;#34;a/from.txt&amp;#34;,
1097-
&amp;#34;b/to.txt&amp;#34;,
1098-
std::make_error_code(std::errc::no_such_file_or_directory)
1099-
&lt;/code&gt;&lt;/pre&gt;</summary>
1100-
1101-
<author>
1102-
<name>suomesta</name>
1103-
<email>[email protected]</email>
1104-
</author>
1105-
</entry>
1106-
1107-
<entry>
1108-
<title>path2 -- fix some English description</title>
1109-
<link href="https://cpprefjp.github.io/reference/filesystem/filesystem_error/path2.html"/>
1110-
<id>9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/filesystem/filesystem_error/path2.md</id>
1111-
<updated>2025-07-06T16:12:08+09:00</updated>
1112-
1113-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/filesystem/filesystem_error/path2.md b/reference/filesystem/filesystem_error/path2.md
1114-
index d38e955aa..4c1aa5cd9 100644
1115-
--- a/reference/filesystem/filesystem_error/path2.md
1116-
+++ b/reference/filesystem/filesystem_error/path2.md
1117-
@@ -29,7 +29,7 @@ int main()
1118-
{
1119-
try {
1120-
throw fs::filesystem_error(
1121-
- &amp;#34;can&amp;#39;t copy file. source file doesn&amp;#39;t found&amp;#34;,
1122-
+ &amp;#34;can&amp;#39;t copy file. source file isn&amp;#39;t found&amp;#34;,
1123-
&amp;#34;a/from.txt&amp;#34;,
1124-
&amp;#34;b/to.txt&amp;#34;,
1125-
std::make_error_code(std::errc::no_such_file_or_directory)
1126-
&lt;/code&gt;&lt;/pre&gt;</summary>
1127-
1128-
<author>
1129-
<name>suomesta</name>
1130-
<email>[email protected]</email>
1131-
</author>
1132-
</entry>
1133-
1134-
<entry>
1135-
<title>what -- fix some English description</title>
1136-
<link href="https://cpprefjp.github.io/reference/filesystem/filesystem_error/what.html"/>
1137-
<id>9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/filesystem/filesystem_error/what.md</id>
1138-
<updated>2025-07-06T16:12:08+09:00</updated>
1139-
1140-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/filesystem/filesystem_error/what.md b/reference/filesystem/filesystem_error/what.md
1141-
index ed147a12e..9a5235cd3 100644
1142-
--- a/reference/filesystem/filesystem_error/what.md
1143-
+++ b/reference/filesystem/filesystem_error/what.md
1144-
@@ -30,7 +30,7 @@ int main()
1145-
{
1146-
try {
1147-
throw fs::filesystem_error(
1148-
- &amp;#34;can&amp;#39;t copy file. source file doesn&amp;#39;t found&amp;#34;,
1149-
+ &amp;#34;can&amp;#39;t copy file. source file isn&amp;#39;t found&amp;#34;,
1150-
std::make_error_code(std::errc::no_such_file_or_directory)
1151-
);
1152-
}
1153-
@@ -45,7 +45,7 @@ int main()
1154-
1155-
### 出力例
1156-
```
1157-
-filesystem error: can&amp;#39;t copy file. source file doesn&amp;#39;t found: No such file or directory
1158-
+filesystem error: can&amp;#39;t copy file. source file isn&amp;#39;t found: No such file or directory
1159-
```
1160-
1161-
## バージョン
1162-
&lt;/code&gt;&lt;/pre&gt;</summary>
1163-
1164-
<author>
1165-
<name>suomesta</name>
1166-
<email>[email protected]</email>
1167-
</author>
1168-
</entry>
1169-
1170-
<entry>
1171-
<title>is_final -- fix some English description</title>
1172-
<link href="https://cpprefjp.github.io/reference/type_traits/is_final.html"/>
1173-
<id>9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/type_traits/is_final.md</id>
1174-
<updated>2025-07-06T16:12:08+09:00</updated>
1175-
1176-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/type_traits/is_final.md b/reference/type_traits/is_final.md
1177-
index 0a5decc9e..f8e466185 100644
1178-
--- a/reference/type_traits/is_final.md
1179-
+++ b/reference/type_traits/is_final.md
1180-
@@ -39,9 +39,9 @@ namespace std {
1181-
struct A {};
1182-
struct B final {};
1183-
1184-
-static_assert(std::is_final&amp;lt;A&amp;gt;::value == false, &amp;#34;A is a not final class&amp;#34;);
1185-
+static_assert(std::is_final&amp;lt;A&amp;gt;::value == false, &amp;#34;A is not a final class&amp;#34;);
1186-
static_assert(std::is_final&amp;lt;B&amp;gt;::value == true, &amp;#34;B is a final class&amp;#34;);
1187-
-static_assert(std::is_final&amp;lt;int&amp;gt;::value == false, &amp;#34;int is a not final class&amp;#34;);
1188-
+static_assert(std::is_final&amp;lt;int&amp;gt;::value == false, &amp;#34;int is not a final class&amp;#34;);
1189-
1190-
int main(){}
1191-
```
1192-
&lt;/code&gt;&lt;/pre&gt;</summary>
1193-
1194-
<author>
1195-
<name>suomesta</name>
1196-
<email>[email protected]</email>
1197-
</author>
1198-
</entry>
1199-
12001018
</feed>

sitemap.xml

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

3137131371
<url>
3137231372
<loc>https://cpprefjp.github.io/reference/cstdlib/rand.html</loc>
31373-
<lastmod>2025-07-06T16:36:28+09:00</lastmod>
31373+
<lastmod>2025-07-06T16:44:06+09:00</lastmod>
3137431374
<changefreq>daily</changefreq>
3137531375
<priority>0.7</priority>
3137631376
</url>

0 commit comments

Comments
 (0)