Skip to content

Commit c339b1d

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 7b30829 commit c339b1d

File tree

4 files changed

+64
-46
lines changed

4 files changed

+64
-46
lines changed

reference/map/map/insert.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@
200200

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2024-09-24T06:32:54">
204-
2024年09月24日 06時32分54秒
203+
<span itemprop="datePublished" content="2024-09-24T06:38:19">
204+
2024年09月24日 06時38分19秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -309,7 +309,7 @@ <h2>戻り値</h2>
309309
</ul>
310310
</li>
311311
<li>(7), (8) : なし</li>
312-
<li>(9) : 戻り値としては、<code><span href="https://cpprefjp.github.io/reference/map/map/map.html">insert_return_type</span></code>を返す。<code>insert_return_type</code>のイテレータ型メンバ変数<code>position</code><code>bool</code>型メンバ変数<code>inserted</code>に格納される値は(1), (2)のものと同じ情報である。<code>nh</code>が空の場合は、<code>position</code>は終端イテレータである。<code>node_type</code>型メンバ変数<code>node</code>には、<ul>
312+
<li>(9) : 戻り値としては、<code><a href="../map.html">insert_return_type</a></code>を返す。<code>insert_return_type</code>のイテレータ型メンバ変数<code>position</code><code>bool</code>型メンバ変数<code>inserted</code>に格納される値は(1), (2)のものと同じ情報である。<code>nh</code>が空の場合は、<code>position</code>は終端イテレータである。<code>node_type</code>型メンバ変数<code>node</code>には、<ul>
313313
<li>挿入された場合には、空の<a href="../../node_handle/node_handle.html">ノードハンドル</a></li>
314314
<li>挿入されなかった場合には、<code>nh</code>の値である。 </li>
315315
</ul>

reference/map/map/key_comp.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@
200200

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2024-09-24T06:32:54">
204-
2024年09月24日 06時32分54秒
203+
<span itemprop="datePublished" content="2024-09-24T06:38:19">
204+
2024年09月24日 06時38分19秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -274,7 +274,7 @@ <h2>関連項目</h2>
274274
<td>要素比較用の関数オブジェクトを返す</td>
275275
</tr>
276276
<tr>
277-
<td><code><span href="https://cpprefjp.github.io/reference/map/map/map/find.html">find</span></code></td>
277+
<td><code><a href="find.html">find</a></code></td>
278278
<td>指定したキーで要素を探す</td>
279279
</tr>
280280
<tr>

rss.xml

Lines changed: 56 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,64 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<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>
77

88

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">&lt;pre&gt;&lt;code&gt;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;&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+
&lt;/code&gt;&lt;/pre&gt;</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">&lt;pre&gt;&lt;code&gt;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+
&lt;/code&gt;&lt;/pre&gt;</summary>
56+
57+
<author>
58+
<name>Akira Takahashi</name>
59+
<email>faithandbrave@gmail.com</email>
60+
</author>
61+
</entry>
62+
963
<entry>
1064
<title>at -- &lt;map&gt; : 冗長な絶対リンク指定を相対リンクに修正</title>
1165
<link href="https://cpprefjp.github.io/reference/map/map/at.html"/>
@@ -1521,40 +1575,4 @@ index b2dc13309..990146a3d 100644
15211575
</author>
15221576
</entry>
15231577

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">&lt;pre&gt;&lt;code&gt;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-
&lt;/code&gt;&lt;/pre&gt;</summary>
1553-
1554-
<author>
1555-
<name>lpha</name>
1556-
<email>sphenocorona@gmail.com</email>
1557-
</author>
1558-
</entry>
1559-
15601578
</feed>

sitemap.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5050,7 +5050,7 @@
50505050

50515051
<url>
50525052
<loc>https://cpprefjp.github.io/reference/map/map/key_comp.html</loc>
5053-
<lastmod>2024-09-24T15:32:54+09:00</lastmod>
5053+
<lastmod>2024-09-24T15:38:19+09:00</lastmod>
50545054
<changefreq>daily</changefreq>
50555055
<priority>0.6</priority>
50565056
</url>
@@ -5155,7 +5155,7 @@
51555155

51565156
<url>
51575157
<loc>https://cpprefjp.github.io/reference/map/map/insert.html</loc>
5158-
<lastmod>2024-09-24T15:32:54+09:00</lastmod>
5158+
<lastmod>2024-09-24T15:38:19+09:00</lastmod>
51595159
<changefreq>daily</changefreq>
51605160
<priority>0.6</priority>
51615161
</url>

0 commit comments

Comments
 (0)