Skip to content

Commit 3057ae8

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent b6763b5 commit 3057ae8

File tree

8 files changed

+539
-83
lines changed

8 files changed

+539
-83
lines changed

reference/execution/execution/completion_signatures.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
</head>
7070
<body>
71-
<header data-kunai-mdinfo="{&#34;meta&#34;: {&#34;header&#34;: [&#34;execution&#34;], &#34;id-type&#34;: [&#34;class template&#34;], &#34;namespace&#34;: [&#34;std::execution&#34;], &#34;cpp&#34;: [&#34;cpp26&#34;]}, &#34;sources&#34;: [{&#34;id&#34;: &#34;2ebcb484ebb2468a938a2338e04f34c7f3b80e9f&#34;, &#34;source&#34;: &#34;#include &lt;execution&gt;\nnamespace ex = std::execution;\n\nint main()\n{\n // \u4e0b\u8a18\u306e\u5b8c\u4e86\u64cd\u4f5c\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\n // \u5024\u5b8c\u4e86 ex::set_value(int), ex::set_value(int, int)\n // \u30a8\u30e9\u30fc\u5b8c\u4e86 ex::set_error(std::exception_ptr)\n // \u505c\u6b62\u5b8c\u4e86 ex::set_stopped()\n using Sigs = ex::completion_signatures&lt;\n ex::set_value_t(int),\n ex::set_value_t(int, int),\n ex::set_error_t(std::exception_ptr),\n ex::set_stopped_t()\n &gt;;\n}\n&#34;}], &#34;page_id&#34;: [&#34;reference&#34;, &#34;execution&#34;, &#34;execution&#34;, &#34;completion_signatures&#34;]}">
71+
<header data-kunai-mdinfo="{&#34;meta&#34;: {&#34;header&#34;: [&#34;execution&#34;], &#34;id-type&#34;: [&#34;class template&#34;], &#34;namespace&#34;: [&#34;std::execution&#34;], &#34;cpp&#34;: [&#34;cpp26&#34;]}, &#34;sources&#34;: [{&#34;id&#34;: &#34;520bd1f142a09a6ed69970dd6020b49824516972&#34;, &#34;source&#34;: &#34;#include &lt;execution&gt;\nnamespace ex = std::execution;\n\nint main()\n{\n // \u4e0b\u8a18\u306e\u5b8c\u4e86\u64cd\u4f5c\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u5b8c\u4e86\u30b7\u30b0\u30cb\u30c1\u30e3\u96c6\u5408\u578b\n // \u5024\u5b8c\u4e86 set_value(int), set_value(int, int)\n // \u30a8\u30e9\u30fc\u5b8c\u4e86 set_error(std::exception_ptr)\n // \u505c\u6b62\u5b8c\u4e86 set_stopped()\n using Sigs = ex::completion_signatures&lt;\n ex::set_value_t(int),\n ex::set_value_t(int, int),\n ex::set_error_t(std::exception_ptr),\n ex::set_stopped_t()\n &gt;;\n}\n&#34;}], &#34;page_id&#34;: [&#34;reference&#34;, &#34;execution&#34;, &#34;execution&#34;, &#34;completion_signatures&#34;]}">
7272
<nav class="navbar navbar-default" role="navigation">
7373
<div class="container-fluid">
7474
<div class="navbar-header">
@@ -200,8 +200,8 @@
200200

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2025-04-21T10:44:45">
204-
2025年04月21日 10時44分45秒
203+
<span itemprop="datePublished" content="2025-05-12T04:30:35">
204+
2025年05月12日 04時30分35秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -252,15 +252,15 @@ <h2><a class="cpprefjp-defined-word" data-desc="関数等の意味論を構成
252252
<li><code><a href="set_stopped.html">set_stopped_t</a>()</code></li>
253253
</ul>
254254
<h2></h2>
255-
<p><div class="yata" id="2ebcb484ebb2468a938a2338e04f34c7f3b80e9f"><div class="codehilite"><pre><span></span><code><span class="cp">#include</span> <span class="cpf"><a href="../../execution.html">&lt;execution&gt;</a></span><span class="cp"></span>
255+
<p><div class="yata" id="520bd1f142a09a6ed69970dd6020b49824516972"><div class="codehilite"><pre><span></span><code><span class="cp">#include</span> <span class="cpf"><a href="../../execution.html">&lt;execution&gt;</a></span><span class="cp"></span>
256256
<span class="k">namespace</span> <span class="n">ex</span> <span class="o">=</span> <span class="n">std</span><span class="o">::</span><span class="n">execution</span><span class="p">;</span>
257257

258258
<span class="kt">int</span> <span class="nf">main</span><span class="p">()</span>
259259
<span class="p">{</span>
260-
<span class="c1">// 下記の完了操作をサポートする</span>
261-
<span class="c1">// 値完了 ex::set_value(int), ex::set_value(int, int)</span>
262-
<span class="c1">// エラー完了 ex::set_error(<a href="../../exception/exception_ptr.html">std::exception_ptr</a>)</span>
263-
<span class="c1">// 停止完了 ex::set_stopped()</span>
260+
<span class="c1">// 下記の完了操作をサポートする完了シグニチャ集合型</span>
261+
<span class="c1">// 値完了 set_value(int), set_value(int, int)</span>
262+
<span class="c1">// エラー完了 set_error(<a href="../../exception/exception_ptr.html">std::exception_ptr</a>)</span>
263+
<span class="c1">// 停止完了 set_stopped()</span>
264264
<span class="k">using</span> <span class="n">Sigs</span> <span class="o">=</span> <span class="n"><span style="color:#ff0000">ex::completion_signatures</span></span><span class="o">&lt;</span>
265265
<span class="n"><a href="set_value.html">ex::set_value_t</a></span><span class="p">(</span><span class="kt">int</span><span class="p">),</span>
266266
<span class="n"><a href="set_value.html">ex::set_value_t</a></span><span class="p">(</span><span class="kt">int</span><span class="p">,</span> <span class="kt">int</span><span class="p">),</span>

0 commit comments

Comments
 (0)