22<feed xmlns="http://www.w3.org/2005/Atom">
33 <title>cpprefjp - C++日本語リファレンス</title>
44 <link href="https://cpprefjp.github.io" />
5- <updated>2026-05-08T23:33:53.619388 </updated>
6- <id>c3f4e7bc-50f7-4f6e-9bbb-e0d8b6307be8 </id>
5+ <updated>2026-05-09T11:43:05.651973 </updated>
6+ <id>7b6e2e1e-4e2e-43a0-98f3-0a165371471b </id>
77
88
9+ <entry>
10+ <title>inplace_stop_source -- typo(stop_token): 可能どうか -> 可能かどうか</title>
11+ <link href="https://cpprefjp.github.io/reference/stop_token/inplace_stop_source.html"/>
12+ <id>27b6714a5e407948b1be9c2ab0ce682baf3259b7:reference/stop_token/inplace_stop_source.md</id>
13+ <updated>2026-05-09T20:38:36+09:00</updated>
14+
15+ <summary type="html"><pre><code>diff --git a/reference/stop_token/inplace_stop_source.md b/reference/stop_token/inplace_stop_source.md
16+ index ff8deab59..36076c9c8 100644
17+ --- a/reference/stop_token/inplace_stop_source.md
18+ +++ b/reference/stop_token/inplace_stop_source.md
19+ @@ -31,7 +31,7 @@ namespace std {
20+
21+ | 名前 | 説明 | 対応バージョン |
22+ |------|------|-------|
23+ -| [`stop_possible`](inplace_stop_source/stop_possible.md) | 停止要求を作成可能どうかを取得する | C++26 |
24+ +| [`stop_possible`](inplace_stop_source/stop_possible.md) | 停止要求を作成可能かどうかを取得する | C++26 |
25+
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+
36+ <entry>
37+ <title>stop_source -- typo(stop_token): 可能どうか -> 可能かどうか</title>
38+ <link href="https://cpprefjp.github.io/reference/stop_token/stop_source.html"/>
39+ <id>27b6714a5e407948b1be9c2ab0ce682baf3259b7:reference/stop_token/stop_source.md</id>
40+ <updated>2026-05-09T20:38:36+09:00</updated>
41+
42+ <summary type="html"><pre><code>diff --git a/reference/stop_token/stop_source.md b/reference/stop_token/stop_source.md
43+ index d460639a5..ad6cececd 100644
44+ --- a/reference/stop_token/stop_source.md
45+ +++ b/reference/stop_token/stop_source.md
46+ @@ -25,7 +25,7 @@ namespace std {
47+ | [`operator=`](stop_source/op_assign.md) | 代入演算子 | C++20 |
48+ | [`swap`](stop_source/swap.md) | 別の`stop_source`と交換する | C++20 |
49+ | [`get_token`](stop_source/get_token.md) | 自身と停止状態を共有する[`stop_token`](stop_token.md)を返す | C++20 |
50+ -| [`stop_possible`](stop_source/stop_possible.md) | 停止要求を作成可能どうかを取得する | C++20 |
51+ +| [`stop_possible`](stop_source/stop_possible.md) | 停止要求を作成可能かどうかを取得する | C++20 |
52+ | [`stop_requested`](stop_source/stop_requested.md)| 停止要求を作成したかどうかを取得する | C++20 |
53+ | [`request_stop`](stop_source/request_stop.md) | 停止要求を作成する | C++20 |
54+
55+ </code></pre></summary>
56+
57+ <author>
58+ <name>teruyamato0731</name>
59+ <email>77840326+teruyamato0731@users.noreply.github.com</email>
60+ </author>
61+ </entry>
62+
963 <entry>
1064 <title>コンパイラの実装状況 -- Merge pull request #1607 from cpprefjp/cpp26_reflection</title>
1165 <link href="https://cpprefjp.github.io/implementation-status.html"/>
@@ -28348,50 +28402,4 @@ index 1f7bf9391..d599e1cea 100644
2834828402 </author>
2834928403 </entry>
2835028404
28351- <entry>
28352- <title>define_static_array -- define_static_array : 条件に寄って静的な長さが返える仕様に対応</title>
28353- <link href="https://cpprefjp.github.io/reference/meta/define_static_array.html"/>
28354- <id>2bc3273095e602b1754096255b858c357788f47d:reference/meta/define_static_array.md</id>
28355- <updated>2026-05-07T15:50:07+09:00</updated>
28356-
28357- <summary type="html"><pre><code>diff --git a/reference/meta/define_static_array.md b/reference/meta/define_static_array.md
28358- index e55ea5882..11122b8cd 100644
28359- --- a/reference/meta/define_static_array.md
28360- +++ b/reference/meta/define_static_array.md
28361- @@ -7,7 +7,7 @@
28362- ```cpp
28363- namespace std {
28364- template &lt;ranges::input_range R&gt;
28365- - consteval std::span&lt;const ranges::range_value_t&lt;R&gt;&gt; define_static_array(R&amp;&amp; r);
28366- + consteval std::span&lt;const ranges::range_value_t&lt;R&gt;, see below&gt; define_static_array(R&amp;&amp; r);
28367- }
28368- ```
28369-
28370- @@ -16,7 +16,12 @@ namespace std {
28371-
28372-
28373- ## 戻り値
28374- -`r`の要素をコピーした静的ストレージ上の配列を参照する`std::span&lt;const T&gt;`を返す。
28375- +`r`の要素をコピーした静的ストレージ上の配列を参照する`std::span&lt;const T, Extent&gt;`を返す。
28376- +
28377- +戻り値の[`std::span`](/reference/span/span.md)の第2テンプレート引数`Extent`は以下のように決まる:
28378- +
28379- +- `ranges::size(r)`が定数式であれば、`static_cast&lt;std::size_t&gt;(ranges::size(r))`(静的長)
28380- +- そうでなければ、[`std::dynamic_extent`](/reference/span/dynamic_extent.md)(動的長)
28381-
28382-
28383- ## 例
28384- @@ -60,3 +65,4 @@ int main() {
28385-
28386- ## 参照
28387- - [P3491R3 `define_static_{string,object,array}`](https://open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3491r3.html)
28388- +- [LWG Issue 4537. Improve `define_static_array`](https://cplusplus.github.io/LWG/issue4537)
28389- </code></pre></summary>
28390-
28391- <author>
28392- <name>Akira Takahashi</name>
28393- <email>faithandbrave@gmail.com</email>
28394- </author>
28395- </entry>
28396-
2839728405</feed>
0 commit comments