Skip to content

Commit bb3d6d5

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 498c662 commit bb3d6d5

File tree

3 files changed

+31
-60
lines changed

3 files changed

+31
-60
lines changed

reference/random.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@
176176

177177
<p class="text-right"><small>
178178
最終更新日時(UTC):
179-
<span itemprop="datePublished" content="2025-10-22T16:15:43">
180-
2025年10月22日 16時15分43秒
179+
<span itemprop="datePublished" content="2026-03-09T02:24:36">
180+
2026年03月09日 02時24分36秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -658,7 +658,6 @@ <h3>分布アルゴリズム</h3>
658658
<h3>乱数ライブラリの使い方</h3>
659659
<ul>
660660
<li><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3551.pdf" target="_blank">N3551 Random Number Generation in C++11</a></li>
661-
<li><a href="https://www.codeproject.com/articles/28548/pitfalls-in-random-number-generation" target="_blank">Pitfalls in Random Number Generation</a></li>
662661
</ul>
663662
<h3>乱数ライブラリが導入された経緯</h3>
664663
<ul>

rss.xml

Lines changed: 28 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,36 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2026-03-08T14:53:02.216478</updated>
6-
<id>3039028f-b1fb-4109-94aa-bc9b35ddf3fe</id>
5+
<updated>2026-03-09T02:28:54.970067</updated>
6+
<id>ed38340b-dc70-4d87-8318-7803308523b5</id>
77

88

9+
<entry>
10+
<title>random -- random: Code Projectの記事がリンク切れしていたが基本的な使い方の内容だったので言及を削除することにした #1590</title>
11+
<link href="https://cpprefjp.github.io/reference/random.html"/>
12+
<id>c22c39fe3073c46b31426ec4541a341044a575c3:reference/random.md</id>
13+
<updated>2026-03-09T11:24:36+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/random.md b/reference/random.md
16+
index f09f5dc71..9e2aab544 100644
17+
--- a/reference/random.md
18+
+++ b/reference/random.md
19+
@@ -246,7 +246,6 @@ int main()
20+
21+
### 乱数ライブラリの使い方
22+
* [N3551 Random Number Generation in C++11](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3551.pdf)
23+
-* [Pitfalls in Random Number Generation](https://www.codeproject.com/articles/28548/pitfalls-in-random-number-generation)
24+
25+
### 乱数ライブラリが導入された経緯
26+
* [N0352 Proposal for Standardization of Random Number Generators in C++](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/1993/N0352.asc)
27+
&lt;/code&gt;&lt;/pre&gt;</summary>
28+
29+
<author>
30+
<name>Akira Takahashi</name>
31+
<email>faithandbrave@gmail.com</email>
32+
</author>
33+
</entry>
34+
935
<entry>
1036
<title>csignal -- add new pages `sig_dfl`,`sig_err`,`sig_ign`</title>
1137
<link href="https://cpprefjp.github.io/reference/csignal.html"/>
@@ -1016,58 +1042,4 @@ index 4ec0e0a4a..15b6be35f 100644
10161042
</author>
10171043
</entry>
10181044

1019-
<entry>
1020-
<title>operator= -- fix status after moved in std::stop_token and std::stop_source</title>
1021-
<link href="https://cpprefjp.github.io/reference/stop_token/stop_source/op_assign.html"/>
1022-
<id>5bc091a499b48a71c6d0674e992bba204ba96cbc:reference/stop_token/stop_source/op_assign.md</id>
1023-
<updated>2026-03-02T21:13:26+09:00</updated>
1024-
1025-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/stop_token/stop_source/op_assign.md b/reference/stop_token/stop_source/op_assign.md
1026-
index f2a3e8b4c..10da57525 100644
1027-
--- a/reference/stop_token/stop_source/op_assign.md
1028-
+++ b/reference/stop_token/stop_source/op_assign.md
1029-
@@ -17,7 +17,7 @@ stop_source&amp;amp; operator=(stop_source&amp;amp;&amp;amp; r) noexcept; // (2)
1030-
1031-
## 効果
1032-
- (1) : [`stop_source`](op_constructor.md)`(r).`[`swap`](swap.md)`(*this)`。これによって `*this` `==` `r` となる。
1033-
-- (2) : [`stop_source`](op_constructor.md)`(std::`[`move`](/reference/utility/move.md)`(r)).`[`swap`](swap.md)`(*this)`。これによって、`r.`[`stop_possible()`](stop_possible.md) `==` `true` となる。
1034-
+- (2) : [`stop_source`](op_constructor.md)`(std::`[`move`](/reference/utility/move.md)`(r)).`[`swap`](swap.md)`(*this)`。これによって、`r.`[`stop_possible()`](stop_possible.md) `==` `false` となる。
1035-
1036-
## 戻り値
1037-
`*this`
1038-
&lt;/code&gt;&lt;/pre&gt;</summary>
1039-
1040-
<author>
1041-
<name>suomesta</name>
1042-
<email>shawn316michaels@gmail.com</email>
1043-
</author>
1044-
</entry>
1045-
1046-
<entry>
1047-
<title>operator= -- fix status after moved in std::stop_token and std::stop_source</title>
1048-
<link href="https://cpprefjp.github.io/reference/stop_token/stop_token/op_assign.html"/>
1049-
<id>5bc091a499b48a71c6d0674e992bba204ba96cbc:reference/stop_token/stop_token/op_assign.md</id>
1050-
<updated>2026-03-02T21:13:26+09:00</updated>
1051-
1052-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/stop_token/stop_token/op_assign.md b/reference/stop_token/stop_token/op_assign.md
1053-
index e21059e3d..854261b07 100644
1054-
--- a/reference/stop_token/stop_token/op_assign.md
1055-
+++ b/reference/stop_token/stop_token/op_assign.md
1056-
@@ -17,7 +17,7 @@ stop_token&amp;amp; operator=(stop_token&amp;amp;&amp;amp; r) noexcept; // (2)
1057-
1058-
## 効果
1059-
- (1) : [`stop_token`](op_constructor.md)`(r).`[`swap`](swap.md)`(*this)`。これによって `*this` `==` `r` となる。
1060-
-- (2) : [`stop_token`](op_constructor.md)`(std::`[`move`](/reference/utility/move.md)`(r)).`[`swap`](swap.md)`(*this)`。これによって、`r.`[`stop_possible()`](stop_possible.md) `==` `true` となる。
1061-
+- (2) : [`stop_token`](op_constructor.md)`(std::`[`move`](/reference/utility/move.md)`(r)).`[`swap`](swap.md)`(*this)`。これによって、`r.`[`stop_possible()`](stop_possible.md) `==` `false` となる。
1062-
1063-
## 戻り値
1064-
`*this`
1065-
&lt;/code&gt;&lt;/pre&gt;</summary>
1066-
1067-
<author>
1068-
<name>suomesta</name>
1069-
<email>shawn316michaels@gmail.com</email>
1070-
</author>
1071-
</entry>
1072-
10731045
</feed>

sitemap.xml

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

23142314
<url>
23152315
<loc>https://cpprefjp.github.io/reference/random.html</loc>
2316-
<lastmod>2026-03-05T18:27:18+09:00</lastmod>
2316+
<lastmod>2026-03-09T11:24:36+09:00</lastmod>
23172317
<changefreq>daily</changefreq>
23182318
<priority>0.8</priority>
23192319
</url>

0 commit comments

Comments
 (0)