2
2
<feed xmlns =" http://www.w3.org/2005/Atom" >
3
3
<title >cpprefjp - C++日本語リファレンス</title >
4
4
<link href =" https://cpprefjp.github.io" />
5
- <updated >2024-12-20T02:50:25.369863 </updated >
6
- <id >e487d344-558c-4c07-8e46-609198c770f3 </id >
5
+ <updated >2024-12-20T06:21:31.339676 </updated >
6
+ <id >dfddb42e-45a9-4a54-a7fb-6233f22eaaca </id >
7
7
8
8
9
+ <entry >
10
+ <title >cin -- Merge pull request #1394 from K10-K10/patch-1</title >
11
+ <link href =" https://cpprefjp.github.io/reference/iostream/cin.html" />
12
+ <id >3ee6fb17eeac256a6ea2d8116b678f2449844927:reference/iostream/cin.md</id >
13
+ <updated >2024-12-20T15:18:40+09:00</updated >
14
+
15
+ <summary type =" html" >< pre>< code> diff --git a/reference/iostream/cin.md b/reference/iostream/cin.md
16
+ index 2c1a69f88..c4f755b89 100644
17
+ --- a/reference/iostream/cin.md
18
+ +++ b/reference/iostream/cin.md
19
+ @@ -40,6 +40,12 @@ int main()
20
+ ```
21
+ * std::cin[color ff0000]
22
+
23
+ +### 出力例
24
+ +```
25
+ +名前を入力してください:cpprefjp
26
+ +あなたの名前は「cpprefjp」ですね
27
+ +```
28
+ +
29
+ ## バージョン
30
+ ### 言語
31
+ - C++98
32
+ < /code>< /pre> </summary >
33
+
34
+ <author >
35
+ <name >Akira Takahashi</name >
36
+
37
+ </author >
38
+ </entry >
39
+
40
+ <entry >
41
+ <title >cin -- reference_iostream_cin:出力例追加</title >
42
+ <link href =" https://cpprefjp.github.io/reference/iostream/cin.html" />
43
+ <id >78017b2b69ec86276388b52fb7bf086940ce941f:reference/iostream/cin.md</id >
44
+ <updated >2024-12-20T05:17:08+00:00</updated >
45
+
46
+ <summary type =" html" >< pre>< code> diff --git a/reference/iostream/cin.md b/reference/iostream/cin.md
47
+ index 2c1a69f88..c4f755b89 100644
48
+ --- a/reference/iostream/cin.md
49
+ +++ b/reference/iostream/cin.md
50
+ @@ -40,6 +40,12 @@ int main()
51
+ ```
52
+ * std::cin[color ff0000]
53
+
54
+ +### 出力例
55
+ +```
56
+ +名前を入力してください:cpprefjp
57
+ +あなたの名前は「cpprefjp」ですね
58
+ +```
59
+ +
60
+ ## バージョン
61
+ ### 言語
62
+ - C++98
63
+ < /code>< /pre> </summary >
64
+
65
+ <author >
66
+ <name >K10-K10</name >
67
+
68
+ </author >
69
+ </entry >
70
+
9
71
<entry >
10
72
<title >memory -- memory: ヘッダ説明の微調整</title >
11
73
<link href =" https://cpprefjp.github.io/reference/memory.html" />
@@ -783,83 +845,4 @@ index 4a60b07dc..4fa2ae4b5 100644
783
845
</author >
784
846
</entry >
785
847
786
- <entry >
787
- <title >set_counter -- philox_engine::set_counter : シード値を状態として保持してないことを記載</title >
788
- <link href =" https://cpprefjp.github.io/reference/random/philox_engine/set_counter.html" />
789
- <id >da031c58424518a87ddc1d52e61b2ecb779940f7:reference/random/philox_engine/set_counter.md</id >
790
- <updated >2024-12-19T22:13:25+09:00</updated >
791
-
792
- <summary type =" html" >< pre>< code> diff --git a/reference/random/philox_engine/set_counter.md b/reference/random/philox_engine/set_counter.md
793
- index e26cde032..ab3a5d976 100644
794
- --- a/reference/random/philox_engine/set_counter.md
795
- +++ b/reference/random/philox_engine/set_counter.md
796
- @@ -16,7 +16,7 @@ void set_counter(const array& lt;result_type, n& gt;& amp; c); // (1) C++26
797
-
798
- この関数は、カウンターベースの乱数生成器において、カウンター値を直接設定することで乱数生成器を指定位置に進める (ジャンプさせる) ことができる。カウンターベースでない乱数生成器においては、乱数生成器の状態を進めるには一つひとつ乱数生成の結果を捨てなければならない場合があるが、カウンターベース乱数生成器のこの機能を使えば状態を一気に進めることができる。
799
-
800
- -この機能は、シード設定と合わせて使用する。同じシード値と同じカウンター値を設定すれば、同じ乱数列を再現させることができる。
801
- +この機能は、シード設定と合わせて使用する。同じシード値と同じカウンター値を設定すれば、同じ乱数列を再現させることができる。このクラスはシード値を状態として保持していないため、再現のためにカウンター値を設定する場合は、シード値も設定する必要がある。
802
-
803
- この関数のパラメータは、標準ライブラリで定義される[`philox4x32`](/reference/random/philox4x32.md)および[`philox4x64`](/reference/random/philox4x64.md)を使っている限りは、要素数4の符号なし32 or 64ビット整数をもつ配列である。
804
-
805
- < /code>< /pre> </summary >
806
-
807
- <author >
808
- <name >Akira Takahashi</name >
809
-
810
- </author >
811
- </entry >
812
-
813
- <entry >
814
- <title >philox4x32 -- 処理系の見出しが消えてた</title >
815
- <link href =" https://cpprefjp.github.io/reference/random/philox4x32.html" />
816
- <id >552254b6123a3fee218174e4472819ef125e97d5:reference/random/philox4x32.md</id >
817
- <updated >2024-12-19T22:05:57+09:00</updated >
818
-
819
- <summary type =" html" >< pre>< code> diff --git a/reference/random/philox4x32.md b/reference/random/philox4x32.md
820
- index 1447c69d3..b0df428ac 100644
821
- --- a/reference/random/philox4x32.md
822
- +++ b/reference/random/philox4x32.md
823
- @@ -77,6 +77,7 @@ int main()
824
- ### 言語
825
- - C++26
826
-
827
- +### 処理系
828
- - [Clang](/implementation.md#clang): 19 [mark noimpl]
829
- - [GCC](/implementation.md#gcc): 14 [mark noimpl]
830
- - [ICC](/implementation.md#icc): ??
831
- < /code>< /pre> </summary >
832
-
833
- <author >
834
- <name >Akira Takahashi</name >
835
-
836
- </author >
837
- </entry >
838
-
839
- <entry >
840
- <title >philox4x64 -- 処理系の見出しが消えてた</title >
841
- <link href =" https://cpprefjp.github.io/reference/random/philox4x64.html" />
842
- <id >552254b6123a3fee218174e4472819ef125e97d5:reference/random/philox4x64.md</id >
843
- <updated >2024-12-19T22:05:57+09:00</updated >
844
-
845
- <summary type =" html" >< pre>< code> diff --git a/reference/random/philox4x64.md b/reference/random/philox4x64.md
846
- index dc9712842..5ca75d307 100644
847
- --- a/reference/random/philox4x64.md
848
- +++ b/reference/random/philox4x64.md
849
- @@ -77,6 +77,7 @@ int main()
850
- ### 言語
851
- - C++26
852
-
853
- +### 処理系
854
- - [Clang](/implementation.md#clang): 19 [mark noimpl]
855
- - [GCC](/implementation.md#gcc): 14 [mark noimpl]
856
- - [ICC](/implementation.md#icc): ??
857
- < /code>< /pre> </summary >
858
-
859
- <author >
860
- <name >Akira Takahashi</name >
861
-
862
- </author >
863
- </entry >
864
-
865
848
</feed >
0 commit comments