22<feed xmlns =" http://www.w3.org/2005/Atom" >
33 <title >cpprefjp - C++日本語リファレンス</title >
44 <link href =" https://cpprefjp.github.io" />
5- <updated >2026-04-12T16:36:44.437134 </updated >
6- <id >0ab5eafc-8d81-4353-9b15-9e709238cc9e </id >
5+ <updated >2026-04-13T03:18:31.478038 </updated >
6+ <id >7654f8df-3a8b-416b-94fd-508d28a7b64e </id >
77
88
9+ <entry >
10+ <title >integer_sequence -- fix: Mandatesは適格要件</title >
11+ <link href =" https://cpprefjp.github.io/reference/utility/integer_sequence.html" />
12+ <id >730f83d47adc7fe0d7d764d8b19a7f3ad04b5799:reference/utility/integer_sequence.md</id >
13+ <updated >2026-04-13T12:14:21+09:00</updated >
14+
15+ <summary type =" html" >< pre>< code> diff --git a/reference/utility/integer_sequence.md b/reference/utility/integer_sequence.md
16+ index 1a655c2ca..ee2f39938 100644
17+ --- a/reference/utility/integer_sequence.md
18+ +++ b/reference/utility/integer_sequence.md
19+ @@ -20,7 +20,7 @@ namespace std {
20+ このクラスは、[`tuple`](/reference/tuple/tuple.md)オブジェクトを展開して、引数パックとして他の関数に転送することを主目的として作られた。
21+
22+
23+ -## テンプレートパラメータ制約
24+ +## 適格要件
25+ - `T` は整数型であること。
26+
27+
28+ < /code>< /pre> </summary >
29+
30+ <author >
31+ <name >teruyamato0731</name >
32+ <email >77840326+teruyamato0731@users.noreply.github.com</email >
33+ </author >
34+ </entry >
35+
936 <entry >
1037 <title >integer_sequence -- feat(integer_sequence): integer_sequenceに関するテンプレートパラメータ制約と備考を追加</title >
1138 <link href =" https://cpprefjp.github.io/reference/utility/integer_sequence.html" />
@@ -4462,80 +4489,4 @@ index 3b64d8b34..50f79c673 100644
44624489 </author >
44634490 </entry >
44644491
4465- <entry >
4466- <title >iostream -- Merge pull request #1605 from rotarymars/fix/typo</title >
4467- <link href =" https://cpprefjp.github.io/reference/iostream.html" />
4468- <id >2a459f75b5f94a02ae8a24d3229201c2616e1f59:reference/iostream.md</id >
4469- <updated >2026-04-08T09:45:58+09:00</updated >
4470-
4471- <content type =" html" >< div class=" header">& lt;iostream& gt;< /div>< h1 itemprop=" name">< span class=" token"> iostream< /span>< /h1>
4472- < div itemprop=" articleBody">< p>< code>& lt;iostream& gt;< /code> ヘッダは、標準入出力オブジェクトを提供する。< /p>
4473- < p> このヘッダは、以下のヘッダをインクルードすることが規定されている。< /p>
4474- < ul>
4475- < li>< code>< a href=" ios.html">& lt;ios& gt;< /a>< /code>< /li>
4476- < li>< code>< a href=" streambuf.html">& lt;streambuf& gt;< /a>< /code>< /li>
4477- < li>< code>< a href=" istream.html">& lt;istream& gt;< /a>< /code>< /li>
4478- < li>< code>< a href=" ostream.html">& lt;ostream& gt;< /a>< /code>< /li>
4479- < /ul>
4480- < p> このため、入出力機能に関する基本的な型や関数(< code>< a href=" ostream/endl.html"> endl< /a>< /code> など主要なマニピュレータを含む)を使用する目的で、このヘッダをインクルードしても良いだろう。< /p>
4481- < p> なお、< code>< a href=" istream/basic_iostream.html"> basic_iostream< /a>< /code> 、< code>< a href=" istream/basic_iostream.html"> iostream< /a>< /code> 、< code>< a href=" istream/basic_iostream.html"> wiostream< /a>< /code> は< code>< a href=" istream.html">& lt;istream& gt;< /a>< /code> で定義されている。< /p>
4482- < h2> 標準入出力オブジェクト< /h2>
4483- < table border=" 1" bordercolor=" #888" style=" border-collapse:collapse">
4484- < thead>
4485- < tr>
4486- < th> 名前< /th>
4487- < th> 説明< /th>
4488- < th> 対応バージョン< /th>
4489- < /tr>
4490- < /thead>
4491- < tbody>
4492- < tr>
4493- < td>< code>< a href=" iostream/cin.html"> cin< /a>< /code>< /td>
4494- < td> マルチバイト文字による標準入力< /td>
4495- < td>< /td>
4496- < /tr>
4497- < tr>
4498- < td>< code>< a href=" iostream/cout.html"> cout< /a>< /code>< /td>
4499- < td> マルチバイト文字による標準出力< /td>
4500- < td>< /td>
4501- < /tr>
4502- < tr>
4503- < td>< code>< a href=" iostream/clog.html"> clog< /a>< /code>< /td>
4504- < td> マルチバイト文字による標準エラー出力< /td>
4505- < td>< /td>
4506- < /tr>
4507- < tr>
4508- < td>< code>< a href=" iostream/cerr.html"> cerr< /a>< /code>< /td>
4509- < td> マルチバイト文字による標準エラー出力(バッファリング無し)< /td>
4510- < td>< /td>
4511- < /tr>
4512- < tr>
4513- < td>< code>< a href=" iostream/cin.html"> wcin< /a>< /code>< /td>
4514- < td> ワイド文字による標準入力< /td>
4515- < td>< /td>
4516- < /tr>
4517- < tr>
4518- < td>< code>< a href=" iostream/cout.html"> wcout< /a>< /code>< /td>
4519- < td> ワイド文字による標準出力< /td>
4520- < td>< /td>
4521- < /tr>
4522- < tr>
4523- < td>< code>< a href=" iostream/clog.html"> wclog< /a>< /code>< /td>
4524- < td> ワイド文字による標準エラー出力< /td>
4525- < td>< /td>
4526- < /tr>
4527- < tr>
4528- < td>< code>< a href=" iostream/cerr.html"> wcerr< /a>< /code>< /td>
4529- < td> ワイド文字による標準エラー出力(バッファリング無し)< /td>
4530- < td>< /td>
4531- < /tr>
4532- < /tbody>
4533- < /table>< /div> </content >
4534-
4535- <author >
4536- <name >Akira Takahashi</name >
4537- <email >faithandbrave@gmail.com</email >
4538- </author >
4539- </entry >
4540-
45414492</feed >
0 commit comments