Skip to content

Commit 15ca632

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent babeb71 commit 15ca632

File tree

4 files changed

+159
-478
lines changed

4 files changed

+159
-478
lines changed

reference/map/multimap/merge.html

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,12 @@
200200

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2024-06-11T13:45:38">
204-
2024年06月11日 13時45分38秒
203+
<span itemprop="datePublished" content="2024-08-06T08:39:27">
204+
2024年08月06日 08時39分27秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
208-
<span itemprop="name">Akira Takahashi</span>
208+
<span itemprop="name">Yuya Asano</span>
209209
</span>
210210
が更新
211211
</small></p>
@@ -237,7 +237,6 @@
237237
</p>
238238
<h2>概要</h2>
239239
<p>引数 <code>source</code> 内の各要素を抽出し、<code>*this</code> の比較オブジェクトを使用して <code>*this</code> への挿入を試みる。<br />
240-
<code>source</code> の要素のキーと等価なキーの要素がある場合、その要素は <code>source</code> から抽出されない。<br />
241240
また、この操作で要素はコピーもムーブもされない。</p>
242241
<h2>要件</h2>
243242
<p><code>source.get_allocator() == (*this).get_allocator()</code></p>
@@ -299,7 +298,7 @@ <h3>処理系</h3>
299298
<ul>
300299
<li><a href="../../../implementation.html#clang">Clang</a>: 8.0.0 <span aria-label="検証済" role="img" title="検証済"></span></li>
301300
<li><a href="../../../implementation.html#gcc">GCC</a>: 7.1.0 <span aria-label="検証済" role="img" title="検証済"></span></li>
302-
<li><a href="../../../implementation.html#icc">ICC</a>: ??</li>
301+
<li><a href="../../../implementation.html#icc">ICC</a>: 2021.10.0 <span aria-label="検証済" role="img" title="検証済"></span></li>
303302
<li><a href="../../../implementation.html#visual_cpp">Visual C++</a>: 2017 Update 5 <span aria-label="検証済" role="img" title="検証済"></span></li>
304303
</ul>
305304
<h2>参照</h2>

reference/set/multiset/merge.html

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
<meta property="og:url" content="https://cpprefjp.github.io/reference/set/multiset/merge.html" />
2929
<meta property="og:site_name" content="cpprefjp - C++日本語リファレンス" />
3030
<meta property="og:type" content="article" />
31-
<meta property="og:description" content="引数 `source` 内の各要素を抽出し、`*this` の比較オブジェクトを使用して `*this` への挿入を試みる" />
31+
<meta property="og:description" content="引数 `source` 内の各要素を抽出し、`*this` の比較オブジェクトを使用して `*this` へ挿入する" />
3232
<meta name="twitter:card" content="summary" />
3333
<meta name="twitter:title" content="multiset::merge - cpprefjp C++日本語リファレンス" />
3434
<meta name="twitter:url" content="https://cpprefjp.github.io/reference/set/multiset/merge.html" />
35-
<meta name="twitter:description" content="引数 `source` 内の各要素を抽出し、`*this` の比較オブジェクトを使用して `*this` への挿入を試みる" />
35+
<meta name="twitter:description" content="引数 `source` 内の各要素を抽出し、`*this` の比較オブジェクトを使用して `*this` へ挿入する" />
3636

3737

3838
<link rel="alternate" type="application/atom+xml" title="Atom" href="https://cpprefjp.github.io/rss.xml" />
@@ -200,12 +200,12 @@
200200

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2024-06-11T13:45:38">
204-
2024年06月11日 13時45分38秒
203+
<span itemprop="datePublished" content="2024-08-06T08:39:27">
204+
2024年08月06日 08時39分27秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
208-
<span itemprop="name">Akira Takahashi</span>
208+
<span itemprop="name">Yuya Asano</span>
209209
</span>
210210
が更新
211211
</small></p>
@@ -236,8 +236,7 @@
236236
</code></pre></div>
237237
</p>
238238
<h2>概要</h2>
239-
<p>引数 <code>source</code> 内の各要素を抽出し、<code>*this</code> の比較オブジェクトを使用して <code>*this</code> への挿入を試みる。<br />
240-
<code>source</code> の要素のキーと等価なキーの要素がある場合、その要素は <code>source</code> から抽出されない。<br />
239+
<p>引数 <code>source</code> 内の各要素を抽出し、<code>*this</code> の比較オブジェクトを使用して <code>*this</code> へ挿入する。<br />
241240
また、この操作で要素はコピーもムーブもされない。</p>
242241
<h2>要件</h2>
243242
<p><code>source.get_allocator() == (*this).get_allocator()</code></p>
@@ -292,7 +291,7 @@ <h3>処理系</h3>
292291
<ul>
293292
<li><a href="../../../implementation.html#clang">Clang</a>: 8.0.0 <span aria-label="検証済" role="img" title="検証済"></span></li>
294293
<li><a href="../../../implementation.html#gcc">GCC</a>: 7.1.0 <span aria-label="検証済" role="img" title="検証済"></span></li>
295-
<li><a href="../../../implementation.html#icc">ICC</a>: ??</li>
294+
<li><a href="../../../implementation.html#icc">ICC</a>: 2021.10.0 <span aria-label="検証済" role="img" title="検証済"></span></li>
296295
<li><a href="../../../implementation.html#visual_cpp">Visual C++</a>: 2017 Update 5 <span aria-label="検証済" role="img" title="検証済"></span></li>
297296
</ul>
298297
<h2>参照</h2>

0 commit comments

Comments
 (0)