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-06-11T13:52:58.028730 </updated>
6
- <id>a263e4d4-c8cc-462c-8d45-7813f0e25b0a </id>
5
+ <updated>2024-06-11T13:59:41.650789 </updated>
6
+ <id>7ea53fd9-1aa5-4fee-a222-9d5ca22c25ce </id>
7
7
8
8
9
+ <entry>
10
+ <title>はじめてのコントリビュート -- 編集者向けドキュメント : 動作検証バージョンに併記する絵文字について記載 #1274</title>
11
+ <link href="https://cpprefjp.github.io/start_editing.html"/>
12
+ <id>5a982c6dd233f434b440821a255c41dbd0924a43:start_editing.md</id>
13
+ <updated>2024-06-11T22:55:48+09:00</updated>
14
+
15
+ <summary type="html"><pre><code>diff --git a/start_editing.md b/start_editing.md
16
+ index 9c6c8d915..4ac193aa8 100644
17
+ --- a/start_editing.md
18
+ +++ b/start_editing.md
19
+ @@ -174,10 +174,15 @@ Pull Requestのレビューが滞っていた場合、Pull Requestの提出者
20
+ ## 処理系
21
+ ### バージョン
22
+ - [Clang](/implementation.md#clang): ??
23
+ -- [GCC](/implementation.md#gcc): 10 [mark verified]
24
+ -- [Visual C++](/implementation.md#visual_cpp): 2019 Update 1 [mark verified]
25
+ +- [GCC](/implementation.md#gcc): 9, [mark noimpl], 10 [mark verified]
26
+ +- [Visual C++](/implementation.md#visual_cpp): 2019 Update 1 [mark impl]
27
+ ```
28
+
29
+ +- mark noimpl : 未実装を表す絵文字
30
+ +- mark impl : 動作確認はできていないけど、リリースノートやそれに類するドキュメントには実装済みと書かれていることを表す絵文字
31
+ +- mark verified : 動作検証済み
32
+ +
33
+ +
34
+ バージョンの表記としては、とくにVisual C++は本サイト独自の表記法がありますので、以下のページを確認してください。
35
+
36
+ - [処理系](implementation.md)
37
+ </code></pre></summary>
38
+
39
+ <author>
40
+ <name>Akira Takahashi</name>
41
+
42
+ </author>
43
+ </entry>
44
+
45
+ <entry>
46
+ <title>スタイル -- 編集者向けドキュメント : 動作検証バージョンに併記する絵文字について記載 #1274</title>
47
+ <link href="https://cpprefjp.github.io/working_style.html"/>
48
+ <id>5a982c6dd233f434b440821a255c41dbd0924a43:working_style.md</id>
49
+ <updated>2024-06-11T22:55:48+09:00</updated>
50
+
51
+ <summary type="html"><pre><code>diff --git a/working_style.md b/working_style.md
52
+ index 528e93d8b..f7668d166 100644
53
+ --- a/working_style.md
54
+ +++ b/working_style.md
55
+ @@ -45,9 +45,16 @@ C++11以降対応については対応バージョンを明記します。バー
56
+ - Visual C++: 2003, 2008, 2010
57
+ - pgCC: 11.2
58
+
59
+ -#### 絵文字の表示テスト
60
+ +表記するバージョンには、「未実装」「実装済み」「動作検証済み」を表す絵文字指定を併記してください。
61
+ +
62
+ - GCC: 12.0 [mark noimpl], 13.1 [mark impl], 14.1 [mark verified]
63
+
64
+ +ここで、各指定は以下を意味します。
65
+ +
66
+ +- mark noimpl : 未実装を表す絵文字
67
+ +- mark impl : 動作確認はできていないけど、リリースノートやそれに類するドキュメントには実装済みと書かれていることを表す絵文字
68
+ +- mark verified : 動作検証済み
69
+ +
70
+
71
+ ### 訳語表
72
+ 訳語表は随時更新していってください。
73
+ </code></pre></summary>
74
+
75
+ <author>
76
+ <name>Akira Takahashi</name>
77
+
78
+ </author>
79
+ </entry>
80
+
9
81
<entry>
10
82
<title>all_of -- Merge pull request #1287 from cpprefjp/compiler_mark</title>
11
83
<link href="https://cpprefjp.github.io/reference/algorithm/all_of.html"/>
@@ -198052,220 +198124,4 @@ index 6a2894e2d..77a2d5fec 100644
198052
198124
</author>
198053
198125
</entry>
198054
198126
198055
- <entry>
198056
- <title>accumulate -- <numeric>: Synopsisスタイル修正 "namespace std {"</title>
198057
- <link href="https://cpprefjp.github.io/reference/numeric/accumulate.html"/>
198058
- <id>2b623ec7ccbfccee55acaef3730a66d46f94da93:reference/numeric/accumulate.md</id>
198059
- <updated>2024-05-29T13:02:04+09:00</updated>
198060
-
198061
- <summary type="html"><pre><code>diff --git a/reference/numeric/accumulate.md b/reference/numeric/accumulate.md
198062
- index 0e1324c5f..790ed14e5 100644
198063
- --- a/reference/numeric/accumulate.md
198064
- +++ b/reference/numeric/accumulate.md
198065
- @@ -4,7 +4,7 @@
198066
- * function template[meta id-type]
198067
-
198068
- ```cpp
198069
- -namespace std{
198070
- +namespace std {
198071
- template &lt;class InputIterator, class T&gt;
198072
- T accumulate(InputIterator first, InputIterator last, T init); // (1) C++03
198073
- template &lt;class InputIterator, class T&gt;
198074
- </code></pre></summary>
198075
-
198076
- <author>
198077
- <name>Koichi Murase</name>
198078
-
198079
- </author>
198080
- </entry>
198081
-
198082
- <entry>
198083
- <title>exclusive_scan -- <numeric>: Synopsisスタイル修正 "namespace std {"</title>
198084
- <link href="https://cpprefjp.github.io/reference/numeric/exclusive_scan.html"/>
198085
- <id>2b623ec7ccbfccee55acaef3730a66d46f94da93:reference/numeric/exclusive_scan.md</id>
198086
- <updated>2024-05-29T13:02:04+09:00</updated>
198087
-
198088
- <summary type="html"><pre><code>diff --git a/reference/numeric/exclusive_scan.md b/reference/numeric/exclusive_scan.md
198089
- index c3ea1ad86..85256a183 100644
198090
- --- a/reference/numeric/exclusive_scan.md
198091
- +++ b/reference/numeric/exclusive_scan.md
198092
- @@ -5,7 +5,7 @@
198093
- * cpp17[meta cpp]
198094
-
198095
- ```cpp
198096
- -namespace std{
198097
- +namespace std {
198098
- template &lt;class InputIterator, class OutputIterator, class T&gt;
198099
- OutputIterator
198100
- exclusive_scan(InputIterator first,
198101
- </code></pre></summary>
198102
-
198103
- <author>
198104
- <name>Koichi Murase</name>
198105
-
198106
- </author>
198107
- </entry>
198108
-
198109
- <entry>
198110
- <title>inclusive_scan -- <numeric>: Synopsisスタイル修正 "namespace std {"</title>
198111
- <link href="https://cpprefjp.github.io/reference/numeric/inclusive_scan.html"/>
198112
- <id>2b623ec7ccbfccee55acaef3730a66d46f94da93:reference/numeric/inclusive_scan.md</id>
198113
- <updated>2024-05-29T13:02:04+09:00</updated>
198114
-
198115
- <summary type="html"><pre><code>diff --git a/reference/numeric/inclusive_scan.md b/reference/numeric/inclusive_scan.md
198116
- index 1ec04f407..d495f4c10 100644
198117
- --- a/reference/numeric/inclusive_scan.md
198118
- +++ b/reference/numeric/inclusive_scan.md
198119
- @@ -5,7 +5,7 @@
198120
- * cpp17[meta cpp]
198121
-
198122
- ```cpp
198123
- -namespace std{
198124
- +namespace std {
198125
- template &lt;class InputIterator, class OutputIterator&gt;
198126
- OutputIterator
198127
- inclusive_scan(InputIterator first,
198128
- </code></pre></summary>
198129
-
198130
- <author>
198131
- <name>Koichi Murase</name>
198132
-
198133
- </author>
198134
- </entry>
198135
-
198136
- <entry>
198137
- <title>iota -- <numeric>: Synopsisスタイル修正 "namespace std {"</title>
198138
- <link href="https://cpprefjp.github.io/reference/numeric/iota.html"/>
198139
- <id>2b623ec7ccbfccee55acaef3730a66d46f94da93:reference/numeric/iota.md</id>
198140
- <updated>2024-05-29T13:02:04+09:00</updated>
198141
-
198142
- <summary type="html"><pre><code>diff --git a/reference/numeric/iota.md b/reference/numeric/iota.md
198143
- index 86800506e..7d285ceca 100644
198144
- --- a/reference/numeric/iota.md
198145
- +++ b/reference/numeric/iota.md
198146
- @@ -5,7 +5,7 @@
198147
- * cpp11[meta cpp]
198148
-
198149
- ```cpp
198150
- -namespace std{
198151
- +namespace std {
198152
- template &lt;class ForwardIterator, class T&gt;
198153
- void
198154
- iota(ForwardIterator first, ForwardIterator last, T value); // (1) C++11
198155
- </code></pre></summary>
198156
-
198157
- <author>
198158
- <name>Koichi Murase</name>
198159
-
198160
- </author>
198161
- </entry>
198162
-
198163
- <entry>
198164
- <title>reduce -- <numeric>: Synopsisスタイル修正 "namespace std {"</title>
198165
- <link href="https://cpprefjp.github.io/reference/numeric/reduce.html"/>
198166
- <id>2b623ec7ccbfccee55acaef3730a66d46f94da93:reference/numeric/reduce.md</id>
198167
- <updated>2024-05-29T13:02:04+09:00</updated>
198168
-
198169
- <summary type="html"><pre><code>diff --git a/reference/numeric/reduce.md b/reference/numeric/reduce.md
198170
- index c49640fea..f1f12920d 100644
198171
- --- a/reference/numeric/reduce.md
198172
- +++ b/reference/numeric/reduce.md
198173
- @@ -5,7 +5,7 @@
198174
- * cpp17[meta cpp]
198175
-
198176
- ```cpp
198177
- -namespace std{
198178
- +namespace std {
198179
- template &lt;class InputIterator&gt;
198180
- typename iterator_traits&lt;InputIterator&gt;::value_type
198181
- reduce(InputIterator first, InputIterator last); // (1) C++17
198182
- </code></pre></summary>
198183
-
198184
- <author>
198185
- <name>Koichi Murase</name>
198186
-
198187
- </author>
198188
- </entry>
198189
-
198190
- <entry>
198191
- <title>transform_exclusive_scan -- <numeric>: Synopsisスタイル修正 "namespace std {"</title>
198192
- <link href="https://cpprefjp.github.io/reference/numeric/transform_exclusive_scan.html"/>
198193
- <id>2b623ec7ccbfccee55acaef3730a66d46f94da93:reference/numeric/transform_exclusive_scan.md</id>
198194
- <updated>2024-05-29T13:02:04+09:00</updated>
198195
-
198196
- <summary type="html"><pre><code>diff --git a/reference/numeric/transform_exclusive_scan.md b/reference/numeric/transform_exclusive_scan.md
198197
- index 1ec2938fc..ad3648667 100644
198198
- --- a/reference/numeric/transform_exclusive_scan.md
198199
- +++ b/reference/numeric/transform_exclusive_scan.md
198200
- @@ -5,7 +5,7 @@
198201
- * cpp17[meta cpp]
198202
-
198203
- ```cpp
198204
- -namespace std{
198205
- +namespace std {
198206
- template &lt;class InputIterator, class OutputIterator, class T,
198207
- class BinaryOperation, class UnaryOperation&gt;
198208
- OutputIterator
198209
- </code></pre></summary>
198210
-
198211
- <author>
198212
- <name>Koichi Murase</name>
198213
-
198214
- </author>
198215
- </entry>
198216
-
198217
- <entry>
198218
- <title>transform_inclusive_scan -- <numeric>: Synopsisスタイル修正 "namespace std {"</title>
198219
- <link href="https://cpprefjp.github.io/reference/numeric/transform_inclusive_scan.html"/>
198220
- <id>2b623ec7ccbfccee55acaef3730a66d46f94da93:reference/numeric/transform_inclusive_scan.md</id>
198221
- <updated>2024-05-29T13:02:04+09:00</updated>
198222
-
198223
- <summary type="html"><pre><code>diff --git a/reference/numeric/transform_inclusive_scan.md b/reference/numeric/transform_inclusive_scan.md
198224
- index 8c604ea5d..f60a499cc 100644
198225
- --- a/reference/numeric/transform_inclusive_scan.md
198226
- +++ b/reference/numeric/transform_inclusive_scan.md
198227
- @@ -5,7 +5,7 @@
198228
- * cpp17[meta cpp]
198229
-
198230
- ```cpp
198231
- -namespace std{
198232
- +namespace std {
198233
- template &lt;class InputIterator, class OutputIterator,
198234
- class BinaryOperation, class UnaryOperation&gt;
198235
- OutputIterator
198236
- </code></pre></summary>
198237
-
198238
- <author>
198239
- <name>Koichi Murase</name>
198240
-
198241
- </author>
198242
- </entry>
198243
-
198244
- <entry>
198245
- <title>transform_reduce -- <numeric>: Synopsisスタイル修正 "namespace std {"</title>
198246
- <link href="https://cpprefjp.github.io/reference/numeric/transform_reduce.html"/>
198247
- <id>2b623ec7ccbfccee55acaef3730a66d46f94da93:reference/numeric/transform_reduce.md</id>
198248
- <updated>2024-05-29T13:02:04+09:00</updated>
198249
-
198250
- <summary type="html"><pre><code>diff --git a/reference/numeric/transform_reduce.md b/reference/numeric/transform_reduce.md
198251
- index 0c5a6d108..2bb408cbf 100644
198252
- --- a/reference/numeric/transform_reduce.md
198253
- +++ b/reference/numeric/transform_reduce.md
198254
- @@ -5,7 +5,7 @@
198255
- * cpp17[meta cpp]
198256
-
198257
- ```cpp
198258
- -namespace std{
198259
- +namespace std {
198260
- template &lt;class InputIterator1, class InputIterator2, class T&gt;
198261
- T transform_reduce(InputIterator1 first1,
198262
- InputIterator1 last1,
198263
- </code></pre></summary>
198264
-
198265
- <author>
198266
- <name>Koichi Murase</name>
198267
-
198268
- </author>
198269
- </entry>
198270
-
198271
198127
</feed>
0 commit comments