Skip to content

Commit cb79449

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent f870965 commit cb79449

File tree

7 files changed

+972
-1707
lines changed

7 files changed

+972
-1707
lines changed

reference/stop_token.html

Lines changed: 26 additions & 13 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-04-04T07:45:27">
180-
2025年04月04日 07時45分27秒
179+
<span itemprop="datePublished" content="2025-04-04T09:27:26">
180+
2025年04月04日 09時27分26秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -206,6 +206,7 @@
206206
<li><code><a href="stop_token/stop_token.html">stop_token</a></code>, <code><a href="stop_token/stop_source.html">stop_source</a></code>, <code><a href="stop_token/stop_callback.html">stop_callback</a></code>は停止状態を共有所有する。最後に破棄されたオブジェクトが停止状態を自動的に解放する。</li>
207207
<li><code><span href="https://cpprefjp.github.io/reference/stop_token/inplace_stop_source.md.nolink">inplace_stop_source</span></code>は停止状態をメンバとして直接所有する。<code><span href="https://cpprefjp.github.io/reference/stop_token/inplace_stop_token.md.nolink">inplace_stop_token</span></code><code><span href="https://cpprefjp.github.io/reference/stop_token/inplace_stop_callback.md.nolink">inplace_stop_callback</span></code>は停止状態の所有には関与しない。</li>
208208
</ul>
209+
<h2>コンセプト</h2>
209210
<table border="1" bordercolor="#888" style="border-collapse:collapse">
210211
<thead>
211212
<tr>
@@ -216,23 +217,35 @@
216217
</thead>
217218
<tbody>
218219
<tr>
219-
<td><code><span href="https://cpprefjp.github.io/reference/stop_token/stoppable_token.md.nolink">stoppable_token</span></code></td>
220-
<td>停止可能な停止トークン(concept)</td>
220+
<td><code><a href="stop_token/stoppable_token.html">stoppable_token</a></code></td>
221+
<td>停止トークン型であることを表す (concept)</td>
221222
<td>C++26</td>
222223
</tr>
223224
<tr>
224-
<td><code><span href="https://cpprefjp.github.io/reference/stop_token/unstoppable_token.md.nolink">unstoppable_token</span></code></td>
225-
<td>停止不可能な停止トークン(concept)</td>
225+
<td><code><a href="stop_token/unstoppable_token.html">unstoppable_token</a></code></td>
226+
<td>停止不可能な停止トークン型であることを表す (concept)</td>
226227
<td>C++26</td>
227228
</tr>
229+
</tbody>
230+
</table>
231+
<h2>停止トークン</h2>
232+
<table border="1" bordercolor="#888" style="border-collapse:collapse">
233+
<thead>
234+
<tr>
235+
<th>名前</th>
236+
<th>説明</th>
237+
<th>対応バージョン</th>
238+
</tr>
239+
</thead>
240+
<tbody>
228241
<tr>
229242
<td><code><a href="stop_token/stop_token.html">stop_token</a></code></td>
230-
<td>停止トークン(class)</td>
243+
<td>停止トークン (class)</td>
231244
<td>C++20</td>
232245
</tr>
233246
<tr>
234247
<td><code><a href="stop_token/stop_source.html">stop_source</a></code></td>
235-
<td>停止要求を発生させるクラス(class)</td>
248+
<td>停止要求を発生させるクラス (class)</td>
236249
<td>C++20</td>
237250
</tr>
238251
<tr>
@@ -247,27 +260,27 @@
247260
</tr>
248261
<tr>
249262
<td><code><span href="https://cpprefjp.github.io/reference/stop_token/never_stop_token.md.nolink">never_stop_token</span></code></td>
250-
<td>停止不可能な停止トークン(class)</td>
263+
<td>停止不可能な停止トークン (class)</td>
251264
<td>C++26</td>
252265
</tr>
253266
<tr>
254267
<td><code><span href="https://cpprefjp.github.io/reference/stop_token/inplace_stop_token.md.nolink">inplace_stop_token</span></code></td>
255-
<td>インプレース停止トークン(class)</td>
268+
<td>インプレース停止トークン (class)</td>
256269
<td>C++26</td>
257270
</tr>
258271
<tr>
259272
<td><code><span href="https://cpprefjp.github.io/reference/stop_token/inplace_stop_source.md.nolink">inplace_stop_source</span></code></td>
260-
<td>インプレース停止要求を発生させるクラス(class)</td>
273+
<td>インプレース停止要求を発生させるクラス (class)</td>
261274
<td>C++26</td>
262275
</tr>
263276
<tr>
264277
<td><code><span href="https://cpprefjp.github.io/reference/stop_token/inplace_stop_callback.md.nolink">inplace_stop_callback</span></code></td>
265-
<td>インプレース停止要求に応じて呼び出されるコールバック(class template)</td>
278+
<td>インプレース停止要求に応じて呼び出されるコールバック (class template)</td>
266279
<td>C++26</td>
267280
</tr>
268281
<tr>
269282
<td><code><span href="https://cpprefjp.github.io/reference/stop_token/stop_callback_for_t.md.nolink">stop_callback_for_t</span></code></td>
270-
<td>停止トークンに対応するコールバック型を取得(alias template)</td>
283+
<td>停止トークンに対応するコールバック型を取得 (alias template)</td>
271284
<td>C++26</td>
272285
</tr>
273286
</tbody>

0 commit comments

Comments
 (0)