22<feed xmlns =" http://www.w3.org/2005/Atom" >
33 <title >cpprefjp - C++日本語リファレンス</title >
44 <link href =" https://cpprefjp.github.io" />
5- <updated >2025-06-18T14:49:22.965683 </updated >
6- <id >879d20bb-c7c1-4104-80f2-f1210e09e58c </id >
5+ <updated >2025-06-19T06:00:18.345247 </updated >
6+ <id >5ccbdfb2-2d65-44af-9094-662779e15753 </id >
77
88
9+ <entry >
10+ <title >read_env -- execution/read_env: 概要説明の微調整</title >
11+ <link href =" https://cpprefjp.github.io/reference/execution/execution/read_env.html" />
12+ <id >8d5640384d41e916d49abd375ebd94ffcda1708c:reference/execution/execution/read_env.md</id >
13+ <updated >2025-06-19T14:55:12+09:00</updated >
14+
15+ <summary type =" html" >< pre>< code> diff --git a/reference/execution/execution/read_env.md b/reference/execution/execution/read_env.md
16+ index db4146dee..9d278cfa3 100644
17+ --- a/reference/execution/execution/read_env.md
18+ +++ b/reference/execution/execution/read_env.md
19+ @@ -14,7 +14,7 @@ namespace std::execution {
20+ ## 概要
21+ `read_env`は、非同期動作の[開始(start)](start.md)時に接続先[Receiver](receiver.md)の[環境](../queryable.md)に対して[クエリオブジェクト](../queryable.md)で問い合わせ、読み取った値を[値完了関数](set_value.md)で送信するSenderファクトリである。
22+
23+ -クエリオブジェクトによるReceiver環境への問い合わせは`read_env`[Sender](sender.md)の構築時ではなく、Receiverと接続されたのち非同期動作が開始されるタイミングまで遅延される。
24+ +クエリオブジェクトによるReceiver環境への問い合わせは`read_env`[Sender](sender.md)構築時やReceiver[接続(connect)](connect.md)ではなく、非同期動作が開始されるタイミングまで遅延される。
25+ [`let_value`](let_value.md)Senderアダプタと組み合わせたり、[Sender Awaitableなコルーチン](with_awaitable_senders.md)での`co_await`式によって、[Scheduler](get_scheduler.md)や[停止トークン](../get_stop_token.md)を読み取ることができる。
26+
27+
28+ < /code>< /pre> </summary >
29+
30+ <author >
31+ <name >yoh</name >
32+ <email >kawasaki.liamg@gmail.com</email >
33+ </author >
34+ </entry >
35+
936 <entry >
1037 <title >equal_range -- ranges::find, lower_bound, equal_range : 射影変換の例でコピーを抑止するよう修正</title >
1138 <link href =" https://cpprefjp.github.io/reference/algorithm/ranges_equal_range.html" />
@@ -156,62 +183,4 @@ index 263580943..24e2488d2 100644
156183 </author >
157184 </entry >
158185
159- <entry >
160- <title >format -- improve chrono::format</title >
161- <link href =" https://cpprefjp.github.io/reference/chrono/format.html" />
162- <id >8bd1a9a9826c76307f017ea4560de0ca49533f8f:reference/chrono/format.md</id >
163- <updated >2025-06-14T17:37:52+09:00</updated >
164-
165- <summary type =" html" >< pre>< code> diff --git a/reference/chrono/format.md b/reference/chrono/format.md
166- index 491b7d90c..e93ea0d14 100644
167- --- a/reference/chrono/format.md
168- +++ b/reference/chrono/format.md
169- @@ -53,8 +53,8 @@ chronoライブラリではこれに加え、たとえばデフォルトでは
170- | `%g` | ISOの週ベースのうしろ2桁10進数の年。結果が1桁の場合、先頭に`0`がつく | `& #34;20& #34;` |
171- | `%G` | ISOの週ベースの10進数の年。結果が4桁未満の場合、4桁になるよう左が`0`で埋められる | `& #34;2020& #34;` |
172- | `%h` | `%b`と等価 | `& #34;Jan& #34;`, `& #34;4月& #34;` |
173- -| `%H` | 24時間時計での10進数の時。結果が1桁の場合、先頭に`0`がつく。改良コマンド`%OH`を指定知ると、ロケール依存の異なる表現を出力する | `& #34;17& #34;` |
174- -| `%I` | 12時間時計での10進数の時。結果が1桁の場合、先頭に`0`がつく。改良コマンド`%OI`を指定知ると、ロケール依存の異なる表現を出力する | `& #34;05& #34;` |
175- +| `%H` | 24時間時計での10進数の時。結果が1桁の場合、先頭に`0`がつく。改良コマンド`%OH`を指定すると、ロケール依存の異なる表現を出力する | `& #34;17& #34;` |
176- +| `%I` | 12時間時計での10進数の時。結果が1桁の場合、先頭に`0`がつく。改良コマンド`%OI`を指定すると、ロケール依存の異なる表現を出力する | `& #34;05& #34;` |
177- | `%j` | 10進数での年の日。1月1日は`001`が出力される。結果が3桁未満の場合、3桁になるよう左が`0`で埋められる。[`duration`](duration.md)の特殊化が与えられた場合、[`days`](duration_aliases.md)の10進数値として0埋めなしで書式化される | `& #34;115& #34;` |
178- | `%m` | 10進数での月。1月は`01`が出力される。結果が1桁の場合、先頭に`0`がつく。改良コマンド`%Om`を指定すると、ロケール依存の異なる表現を出力する | `& #34;04& #34;` |
179- | `%M` | 10進数での分。結果が1桁の場合、先頭に`0`がつく。改良コマンド`%OM`を指定すると、ロケール依存の異なる表現を出力する | `& #34;14& #34;` |
180- @@ -107,12 +107,11 @@ int main()
181- std::cout & lt;& lt; std::format(& #34;2. {:%H時%M分%S秒}& #34;, now) & lt;& lt; std::endl;
182- std::cout & lt;& lt; std::format(& #34;3. {:%H時%M分%S秒}& #34;, now_sec) & lt;& lt; std::endl;
183- std::cout & lt;& lt; std::format(& #34;4. {:%p %I時%M分%S秒}& #34;, now_sec) & lt;& lt; std::endl;
184- - std::cout & lt;& lt; std::format(& #34;4. {:%p %I時%M分%S秒}& #34;, now_sec) & lt;& lt; std::endl;
185-
186- // その他要素
187- - std::cout & lt;& lt; std::format(& #34;6. {:%C}& #34;, now) & lt;& lt; std::endl; // 世紀 (100で割って切り下げた値)
188- - std::cout & lt;& lt; std::format(& #34;7. {:%a}& #34;, now) & lt;& lt; std::endl; // 曜日の略称
189- - std::cout & lt;& lt; std::format(& #34;8. {:%A}& #34;, now) & lt;& lt; std::endl; // 曜日の完全名
190- + std::cout & lt;& lt; std::format(& #34;5. {:%C}& #34;, now) & lt;& lt; std::endl; // 世紀 (100で割って切り下げた値)
191- + std::cout & lt;& lt; std::format(& #34;6. {:%a}& #34;, now) & lt;& lt; std::endl; // 曜日の略称
192- + std::cout & lt;& lt; std::format(& #34;7. {:%A}& #34;, now) & lt;& lt; std::endl; // 曜日の完全名
193- }
194- ```
195- * std::chrono::system_clock[link /reference/chrono/system_clock.md]
196- @@ -125,9 +124,9 @@ int main()
197- 2. 08時27分28.1822610秒
198- 3. 08時27分28秒
199- 4. AM 08時27分28秒
200- -6. 20
201- -7. Tue
202- -8. Tuesday
203- +5. 20
204- +6. Tue
205- +7. Tuesday
206- ```
207-
208- ## バージョン
209- < /code>< /pre> </summary >
210-
211- <author >
212- <name >suomesta</name >
213- <email >shawn316michaels@gmail.com</email >
214- </author >
215- </entry >
216-
217186</feed >
0 commit comments