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-09-24T06:35:53.391388 </updated >
6
- <id >32470be9-3d1a-4f2a-b550-9a7f38e199eb </id >
5
+ <updated >2024-09-24T06:41:17.428870 </updated >
6
+ <id >7b54901c-84f0-4329-86f2-994820c97daf </id >
7
7
8
8
9
+ <entry >
10
+ <title >insert -- リンク修正</title >
11
+ <link href =" https://cpprefjp.github.io/reference/map/map/insert.html" />
12
+ <id >2a58e28728e1be271dde61b672746c67b1672a1c:reference/map/map/insert.md</id >
13
+ <updated >2024-09-24T15:38:19+09:00</updated >
14
+
15
+ <summary type =" html" >< pre>< code> diff --git a/reference/map/map/insert.md b/reference/map/map/insert.md
16
+ index ab50a09df..b8c44319b 100644
17
+ --- a/reference/map/map/insert.md
18
+ +++ b/reference/map/map/insert.md
19
+ @@ -93,7 +93,7 @@ iterator insert(const_iterator hint, node_type& amp;& amp; nh); // (10) C++17
20
+ - 挿入された場合には、新しく挿入された要素を指すイテレータを返す。
21
+ - 挿入されなかった場合には、`x`のキーと等価のキーを持つ要素へのイテレータを返す。
22
+ - (7), (8) : なし
23
+ -- (9) : 戻り値としては、[`insert_return_type`](map.md)を返す。`insert_return_type`のイテレータ型メンバ変数`position`、`bool`型メンバ変数`inserted`に格納される値は(1), (2)のものと同じ情報である。`nh`が空の場合は、`position`は終端イテレータである。`node_type`型メンバ変数`node`には、
24
+ +- (9) : 戻り値としては、[`insert_return_type`](/reference/map/map.md)を返す。`insert_return_type`のイテレータ型メンバ変数`position`、`bool`型メンバ変数`inserted`に格納される値は(1), (2)のものと同じ情報である。`nh`が空の場合は、`position`は終端イテレータである。`node_type`型メンバ変数`node`には、
25
+ - 挿入された場合には、空の[ノードハンドル](/reference/node_handle/node_handle.md)。
26
+ - 挿入されなかった場合には、`nh`の値である。
27
+ - (10) : `nh`が空の場合、`(*this).end()`を返す。そうではない場合、`nh`と等価のキーの要素を指すイテレータを常に返す。
28
+ < /code>< /pre> </summary >
29
+
30
+ <author >
31
+ <name >Akira Takahashi</name >
32
+ <email >faithandbrave@gmail.com</email >
33
+ </author >
34
+ </entry >
35
+
36
+ <entry >
37
+ <title >key_comp -- リンク修正</title >
38
+ <link href =" https://cpprefjp.github.io/reference/map/map/key_comp.html" />
39
+ <id >2a58e28728e1be271dde61b672746c67b1672a1c:reference/map/map/key_comp.md</id >
40
+ <updated >2024-09-24T15:38:19+09:00</updated >
41
+
42
+ <summary type =" html" >< pre>< code> diff --git a/reference/map/map/key_comp.md b/reference/map/map/key_comp.md
43
+ index d0f784d0d..d752ac16d 100644
44
+ --- a/reference/map/map/key_comp.md
45
+ +++ b/reference/map/map/key_comp.md
46
+ @@ -54,7 +54,7 @@ int main()
47
+ | 名前 | 説明 |
48
+ |---------------------------------|----------------------------------------------------------|
49
+ | [`value_comp`](value_comp.md) | 要素比較用の関数オブジェクトを返す |
50
+ -| [`find`](map/find.md) | 指定したキーで要素を探す |
51
+ +| [`find`](find.md) | 指定したキーで要素を探す |
52
+ | [`count`](count.md) | 指定したキーにマッチする要素の数を返す |
53
+ | [`lower_bound`](lower_bound.md) | 与えられた値より小さく無い最初の要素へのイテレータを返す |
54
+ | [`upper_bound`](upper_bound.md) | 特定の値よりも大きい最初の要素へのイテレータを返す |
55
+ < /code>< /pre> </summary >
56
+
57
+ <author >
58
+ <name >Akira Takahashi</name >
59
+ <email >faithandbrave@gmail.com</email >
60
+ </author >
61
+ </entry >
62
+
9
63
<entry >
10
64
<title >at -- < map> : 冗長な絶対リンク指定を相対リンクに修正</title >
11
65
<link href =" https://cpprefjp.github.io/reference/map/map/at.html" />
@@ -1521,40 +1575,4 @@ index b2dc13309..990146a3d 100644
1521
1575
</author >
1522
1576
</entry >
1523
1577
1524
- <entry >
1525
- <title >if文とswitch文の条件式と初期化を分離 [P0305R1] -- コードの誤りを修正</title >
1526
- <link href =" https://cpprefjp.github.io/lang/cpp17/selection_statements_with_initializer.html" />
1527
- <id >caa8159c251909eb1e20da5620c4acbac1bd1039:lang/cpp17/selection_statements_with_initializer.md</id >
1528
- <updated >2024-09-20T02:16:22+09:00</updated >
1529
-
1530
- <summary type =" html" >< pre>< code> diff --git a/lang/cpp17/selection_statements_with_initializer.md b/lang/cpp17/selection_statements_with_initializer.md
1531
- index 5e6a59a6e..56dc5108b 100644
1532
- --- a/lang/cpp17/selection_statements_with_initializer.md
1533
- +++ b/lang/cpp17/selection_statements_with_initializer.md
1534
- @@ -32,7 +32,7 @@ if (status_code c = bar(); c != SUCCESS) {
1535
- …
1536
- return c;
1537
- } else {
1538
- - //ステータスコード C が成功だったら、何かして、処理を続行する
1539
- + //ステータスコード c が成功だったら、何かして、処理を続行する
1540
- …
1541
- }
1542
- //この時点で c は無効
1543
- @@ -160,7 +160,7 @@ status_code foo() {
1544
- int n = get_value();
1545
-
1546
- {
1547
- - status_code C = bar(n);
1548
- + status_code c = bar(n);
1549
- if (c != status_code::SUCCESS) { return c; }
1550
- }
1551
- {
1552
- < /code>< /pre> </summary >
1553
-
1554
- <author >
1555
- <name >lpha</name >
1556
- <email >sphenocorona@gmail.com</email >
1557
- </author >
1558
- </entry >
1559
-
1560
1578
</feed >
0 commit comments