Skip to content

Commit 8dbbfd1

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent db6a003 commit 8dbbfd1

File tree

9 files changed

+2280
-47
lines changed

9 files changed

+2280
-47
lines changed

lang/cpp20/implicit_creation_of_objects_for_low-level_object_manipulation.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-02-18T06:42:56">
192-
2025年02月18日 06時42分56秒
191+
<span itemprop="datePublished" content="2025-05-10T11:25:46">
192+
2025年05月10日 11時25分46秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Akira Takahashi</span>
196+
<span itemprop="name">suomesta</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -577,7 +577,7 @@ <h2><a href="#relative-page" id="relative-page">関連項目</a></h2>
577577
<ul>
578578
<li><code><span href="https://cpprefjp.github.io/reference/memory/start_lifetime_as.md.nolink">start_lifetime_as()</span></code></li>
579579
<li><code><span href="https://cpprefjp.github.io/reference/memory/start_lifetime_as_array.md.nolink">start_lifetime_as_array()</span></code></li>
580-
<li><code><span href="https://cpprefjp.github.io/reference/type_traits/is_implicit_lifetime.md.nolink">is_implicit_lifetime</span></code></li>
580+
<li><code><a href="../../reference/type_traits/is_implicit_lifetime.html">is_implicit_lifetime</a></code></li>
581581
</ul>
582582
<h2>参照</h2>
583583
<ul>

lang/cpp23.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@
176176

177177
<p class="text-right"><small>
178178
最終更新日時(UTC):
179-
<span itemprop="datePublished" content="2025-02-06T17:10:03">
180-
2025年02月06日 17時10分03秒
179+
<span itemprop="datePublished" content="2025-05-10T11:25:46">
180+
2025年05月10日 11時25分46秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -596,6 +596,7 @@ <h3>型特性</h3>
596596
<li><code><a href="../reference/type_traits/reference_converts_from_temporary.html">std::reference_converts_from_temporary</a></code></li>
597597
</ul>
598598
</li>
599+
<li><code><a href="../reference/type_traits.html">&lt;type_traits&gt;</a></code>に、暗黙的に構築される型かを判定する型特性<code><a href="../reference/type_traits/is_implicit_lifetime.html">std::is_implicit_lifetime</a></code>を追加</li>
599600
</ul>
600601
<h3>C互換ライブラリ</h3>
601602
<ul>

lang/cpp23/feature_test_macros.html

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

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-02-06T17:10:03">
192-
2025年02月06日 17時10分03秒
191+
<span itemprop="datePublished" content="2025-05-10T11:25:46">
192+
2025年05月10日 11時25分46秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -451,7 +451,7 @@ <h3>ライブラリ</h3>
451451
<tr>
452452
<td><code>__cpp_lib_is_implicit_lifetime</code></td>
453453
<td><code>202302L</code></td>
454-
<td><code>std::is_implicit_lifetime</code>の追加</td>
454+
<td><code><a href="../../reference/type_traits/is_implicit_lifetime.html">std::is_implicit_lifetime</a></code>の追加</td>
455455
<td><code><a href="../../reference/type_traits.html">&lt;type_traits&gt;</a></code></td>
456456
</tr>
457457
<tr>

reference/type_traits.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,12 @@
176176

177177
<p class="text-right"><small>
178178
最終更新日時(UTC):
179-
<span itemprop="datePublished" content="2025-04-03T08:40:35">
180-
2025年04月03日 08時40分35秒
179+
<span itemprop="datePublished" content="2025-05-10T11:25:46">
180+
2025年05月10日 11時25分46秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
184-
<span itemprop="name">Akira Takahashi</span>
184+
<span itemprop="name">suomesta</span>
185185
</span>
186186
が更新
187187
</small></p>
@@ -441,6 +441,11 @@ <h2>型の特性</h2>
441441
<td>C++17</td>
442442
</tr>
443443
<tr>
444+
<td><code><a href="type_traits/is_implicit_lifetime.html">is_implicit_lifetime</a></code></td>
445+
<td>型が暗黙的に構築されるかを調べる (class template)</td>
446+
<td>C++23</td>
447+
</tr>
448+
<tr>
444449
<td><code><a href="type_traits/is_signed.html">is_signed</a></code></td>
445450
<td>型が符号付き算術型か調べる (class template)</td>
446451
<td>C++11</td>

reference/type_traits/is_implicit_lifetime.html

Lines changed: 312 additions & 0 deletions
Large diffs are not rendered by default.

rss.xml

Lines changed: 1937 additions & 29 deletions
Large diffs are not rendered by default.

sitemap.xml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@
549549

550550
<url>
551551
<loc>https://cpprefjp.github.io/reference/type_traits.html</loc>
552-
<lastmod>2025-04-03T17:54:06+09:00</lastmod>
552+
<lastmod>2025-05-10T20:25:46+09:00</lastmod>
553553
<changefreq>daily</changefreq>
554554
<priority>0.8</priority>
555555
</url>
@@ -33391,6 +33391,13 @@
3339133391
<priority>0.7</priority>
3339233392
</url>
3339333393

33394+
<url>
33395+
<loc>https://cpprefjp.github.io/reference/type_traits/is_implicit_lifetime.html</loc>
33396+
<lastmod>2025-05-10T20:25:46+09:00</lastmod>
33397+
<changefreq>daily</changefreq>
33398+
<priority>0.7</priority>
33399+
</url>
33400+
3339433401
<url>
3339533402
<loc>https://cpprefjp.github.io/reference/type_traits/common_reference.html</loc>
3339633403
<lastmod>2025-04-03T12:32:11+09:00</lastmod>
@@ -37187,7 +37194,7 @@
3718737194

3718837195
<url>
3718937196
<loc>https://cpprefjp.github.io/lang/cpp23.html</loc>
37190-
<lastmod>2025-04-03T12:32:11+09:00</lastmod>
37197+
<lastmod>2025-05-10T20:25:46+09:00</lastmod>
3719137198
<changefreq>daily</changefreq>
3719237199
<priority>0.8</priority>
3719337200
</url>
@@ -37481,7 +37488,7 @@
3748137488

3748237489
<url>
3748337490
<loc>https://cpprefjp.github.io/lang/cpp23/feature_test_macros.html</loc>
37484-
<lastmod>2025-04-03T12:32:11+09:00</lastmod>
37491+
<lastmod>2025-05-10T20:25:46+09:00</lastmod>
3748537492
<changefreq>daily</changefreq>
3748637493
<priority>0.7</priority>
3748737494
</url>
@@ -38538,7 +38545,7 @@
3853838545

3853938546
<url>
3854038547
<loc>https://cpprefjp.github.io/lang/cpp20/implicit_creation_of_objects_for_low-level_object_manipulation.html</loc>
38541-
<lastmod>2025-04-03T12:32:11+09:00</lastmod>
38548+
<lastmod>2025-05-10T20:25:46+09:00</lastmod>
3854238549
<changefreq>daily</changefreq>
3854338550
<priority>0.7</priority>
3854438551
</url>

static/crsearch/crsearch.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/crsearch/crsearch.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)