Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tnagler committed Nov 23, 2021
1 parent 5ed31f4 commit 8b9c6e0
Show file tree
Hide file tree
Showing 19 changed files with 447 additions and 431 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.0.0)
project(quickpool VERSION 0.2.0)
project(quickpool VERSION 1.1.0)

## Project-wide setup
set(CMAKE_CXX_STANDARD 11)
Expand Down
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "quickpool"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.2.0
PROJECT_NUMBER = 1.1.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion docs/annotated.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down
2 changes: 1 addition & 1 deletion docs/classquickpool_1_1ThreadPool-members.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down
10 changes: 5 additions & 5 deletions docs/classquickpool_1_1ThreadPool.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down Expand Up @@ -124,7 +124,7 @@
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>A work stealing thread pool. </p>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00330">330</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00346">346</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
</div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a id="ab067ffcc9f09b64eb16591b36a6b9f4a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab067ffcc9f09b64eb16591b36a6b9f4a">&#9670;&nbsp;</a></span>ThreadPool()</h2>
Expand Down Expand Up @@ -156,7 +156,7 @@ <h2 class="memtitle"><span class="permalink"><a href="#ab067ffcc9f09b64eb16591b3
</dd>
</dl>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00341">341</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00357">357</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>

</div>
</div>
Expand Down Expand Up @@ -208,7 +208,7 @@ <h2 class="memtitle"><span class="permalink"><a href="#af803164106b0c9181e01eb59
</dl>
<dl class="section return"><dt>Returns</dt><dd>A <code>std::future</code> for the task. Call <code>future.get()</code> to retrieve the results at a later point in time (blocking). </dd></dl>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00399">399</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00415">415</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>

</div>
</div>
Expand Down Expand Up @@ -257,7 +257,7 @@ <h2 class="memtitle"><span class="permalink"><a href="#a3a79d3a078643e271b238ee1
</dd>
</dl>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00384">384</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00400">400</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>

</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/classquickpool_1_1TodoList-members.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down
14 changes: 7 additions & 7 deletions docs/classquickpool_1_1TodoList.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down Expand Up @@ -101,7 +101,7 @@
<div class="textblock"><p>Todo list - a synchronization primitive. </p>
<p>Add a task with <code><a class="el" href="classquickpool_1_1TodoList.html#a29ec33475a91396ee0d7318bfc8be898">add()</a></code>, cross it off with <code><a class="el" href="classquickpool_1_1TodoList.html#aaf159795a22b9fdf2a459fc1e7afbcb0">cross()</a></code>, and wait for all tasks to complete with <code><a class="el" href="classquickpool_1_1TodoList.html#a7a8e0c6b036bf9c414b8458c1d8bb03f">wait()</a></code>. </p>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00036">36</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00051">51</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
</div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a id="a11bb98b8f7bc86d7931d4d61c62605dd"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a11bb98b8f7bc86d7931d4d61c62605dd">&#9670;&nbsp;</a></span>TodoList()</h2>
Expand Down Expand Up @@ -133,7 +133,7 @@ <h2 class="memtitle"><span class="permalink"><a href="#a11bb98b8f7bc86d7931d4d61
</dd>
</dl>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00041">41</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00056">56</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>

</div>
</div>
Expand Down Expand Up @@ -168,7 +168,7 @@ <h2 class="memtitle"><span class="permalink"><a href="#a29ec33475a91396ee0d7318b
</dd>
</dl>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00047">47</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00062">62</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>

</div>
</div>
Expand Down Expand Up @@ -202,7 +202,7 @@ <h2 class="memtitle"><span class="permalink"><a href="#aaf159795a22b9fdf2a459fc1
</dd>
</dl>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00051">51</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00066">66</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>

</div>
</div>
Expand Down Expand Up @@ -236,7 +236,7 @@ <h2 class="memtitle"><span class="permalink"><a href="#a01dd953ebc1c6988c621c474
</dd>
</dl>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00085">85</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00100">100</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>

</div>
</div>
Expand Down Expand Up @@ -270,7 +270,7 @@ <h2 class="memtitle"><span class="permalink"><a href="#a7a8e0c6b036bf9c414b8458c
</dd>
</dl>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00068">68</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00083">83</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>

</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/files.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down
2 changes: 1 addition & 1 deletion docs/functions.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down
2 changes: 1 addition & 1 deletion docs/functions_func.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down
2 changes: 1 addition & 1 deletion docs/graph_legend.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down
18 changes: 9 additions & 9 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down Expand Up @@ -134,14 +134,14 @@ <h2><a class="anchor" id="autotoc_md3"></a>
</div><!-- fragment --><p>You can also add items on the fly using <a href="https://tnagler.github.io/quickpool/classquickpool_1_1TodoList.html"><code>TodoList::add()</code></a>. </p>
</div></div><!-- PageDoc -->
</div><!-- contents -->
<div class="ttc" id="anamespacequickpool_html_abe02477646e2dfceb9b8657815afefd1"><div class="ttname"><a href="namespacequickpool.html#abe02477646e2dfceb9b8657815afefd1">quickpool::async</a></div><div class="ttdeci">auto async(Function &amp;&amp;f, Args &amp;&amp;... args) -&gt; std::future&lt; decltype(f(args...))&gt;</div><div class="ttdoc">executes a job asynchronously the global thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00450">quickpool.hpp:450</a></div></div>
<div class="ttc" id="aclassquickpool_1_1ThreadPool_html_a0d8a3e00d2095145a4899b97080471ce"><div class="ttname"><a href="classquickpool_1_1ThreadPool.html#a0d8a3e00d2095145a4899b97080471ce">quickpool::ThreadPool::wait</a></div><div class="ttdeci">void wait()</div><div class="ttdoc">waits for all jobs currently running on the global thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00411">quickpool.hpp:411</a></div></div>
<div class="ttc" id="anamespacequickpool_html_a2a7dcef03a6a02c06a999ef6f244a291"><div class="ttname"><a href="namespacequickpool.html#a2a7dcef03a6a02c06a999ef6f244a291">quickpool::wait</a></div><div class="ttdeci">void wait()</div><div class="ttdoc">waits for all jobs currently running on the global thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00458">quickpool.hpp:458</a></div></div>
<div class="ttc" id="aclassquickpool_1_1TodoList_html"><div class="ttname"><a href="classquickpool_1_1TodoList.html">quickpool::TodoList</a></div><div class="ttdoc">Todo list - a synchronization primitive.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00036">quickpool.hpp:36</a></div></div>
<div class="ttc" id="aclassquickpool_1_1ThreadPool_html_af803164106b0c9181e01eb59bf9abdcc"><div class="ttname"><a href="classquickpool_1_1ThreadPool.html#af803164106b0c9181e01eb59bf9abdcc">quickpool::ThreadPool::async</a></div><div class="ttdeci">auto async(Function &amp;&amp;f, Args &amp;&amp;... args) -&gt; std::future&lt; decltype(f(args...))&gt;</div><div class="ttdoc">executes a job asynchronously the global thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00399">quickpool.hpp:399</a></div></div>
<div class="ttc" id="aclassquickpool_1_1ThreadPool_html"><div class="ttname"><a href="classquickpool_1_1ThreadPool.html">quickpool::ThreadPool</a></div><div class="ttdoc">A work stealing thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00330">quickpool.hpp:330</a></div></div>
<div class="ttc" id="aclassquickpool_1_1ThreadPool_html_a3a79d3a078643e271b238ee1be47986e"><div class="ttname"><a href="classquickpool_1_1ThreadPool.html#a3a79d3a078643e271b238ee1be47986e">quickpool::ThreadPool::push</a></div><div class="ttdeci">void push(Function &amp;&amp;f, Args &amp;&amp;... args)</div><div class="ttdoc">pushes a job to the thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00384">quickpool.hpp:384</a></div></div>
<div class="ttc" id="anamespacequickpool_html_a06e138ab2370dc5055a64995ad6c9286"><div class="ttname"><a href="namespacequickpool.html#a06e138ab2370dc5055a64995ad6c9286">quickpool::push</a></div><div class="ttdeci">void push(Function &amp;&amp;f, Args &amp;&amp;... args)</div><div class="ttdoc">Direct access to the global thread pool ----------------—.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00437">quickpool.hpp:437</a></div></div>
<div class="ttc" id="anamespacequickpool_html_abe02477646e2dfceb9b8657815afefd1"><div class="ttname"><a href="namespacequickpool.html#abe02477646e2dfceb9b8657815afefd1">quickpool::async</a></div><div class="ttdeci">auto async(Function &amp;&amp;f, Args &amp;&amp;... args) -&gt; std::future&lt; decltype(f(args...))&gt;</div><div class="ttdoc">executes a job asynchronously the global thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00466">quickpool.hpp:466</a></div></div>
<div class="ttc" id="aclassquickpool_1_1ThreadPool_html_a0d8a3e00d2095145a4899b97080471ce"><div class="ttname"><a href="classquickpool_1_1ThreadPool.html#a0d8a3e00d2095145a4899b97080471ce">quickpool::ThreadPool::wait</a></div><div class="ttdeci">void wait()</div><div class="ttdoc">waits for all jobs currently running on the global thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00427">quickpool.hpp:427</a></div></div>
<div class="ttc" id="anamespacequickpool_html_a2a7dcef03a6a02c06a999ef6f244a291"><div class="ttname"><a href="namespacequickpool.html#a2a7dcef03a6a02c06a999ef6f244a291">quickpool::wait</a></div><div class="ttdeci">void wait()</div><div class="ttdoc">waits for all jobs currently running on the global thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00474">quickpool.hpp:474</a></div></div>
<div class="ttc" id="aclassquickpool_1_1TodoList_html"><div class="ttname"><a href="classquickpool_1_1TodoList.html">quickpool::TodoList</a></div><div class="ttdoc">Todo list - a synchronization primitive.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00051">quickpool.hpp:51</a></div></div>
<div class="ttc" id="aclassquickpool_1_1ThreadPool_html_af803164106b0c9181e01eb59bf9abdcc"><div class="ttname"><a href="classquickpool_1_1ThreadPool.html#af803164106b0c9181e01eb59bf9abdcc">quickpool::ThreadPool::async</a></div><div class="ttdeci">auto async(Function &amp;&amp;f, Args &amp;&amp;... args) -&gt; std::future&lt; decltype(f(args...))&gt;</div><div class="ttdoc">executes a job asynchronously the global thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00415">quickpool.hpp:415</a></div></div>
<div class="ttc" id="aclassquickpool_1_1ThreadPool_html"><div class="ttname"><a href="classquickpool_1_1ThreadPool.html">quickpool::ThreadPool</a></div><div class="ttdoc">A work stealing thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00346">quickpool.hpp:346</a></div></div>
<div class="ttc" id="aclassquickpool_1_1ThreadPool_html_a3a79d3a078643e271b238ee1be47986e"><div class="ttname"><a href="classquickpool_1_1ThreadPool.html#a3a79d3a078643e271b238ee1be47986e">quickpool::ThreadPool::push</a></div><div class="ttdeci">void push(Function &amp;&amp;f, Args &amp;&amp;... args)</div><div class="ttdoc">pushes a job to the thread pool.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00400">quickpool.hpp:400</a></div></div>
<div class="ttc" id="anamespacequickpool_html_a06e138ab2370dc5055a64995ad6c9286"><div class="ttname"><a href="namespacequickpool.html#a06e138ab2370dc5055a64995ad6c9286">quickpool::push</a></div><div class="ttdeci">void push(Function &amp;&amp;f, Args &amp;&amp;... args)</div><div class="ttdoc">Direct access to the global thread pool ----------------—.</div><div class="ttdef"><b>Definition:</b> <a href="quickpool_8hpp_source.html#l00453">quickpool.hpp:453</a></div></div>
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by &#160;<a href="http://www.doxygen.org/index.html">
Expand Down
2 changes: 1 addition & 1 deletion docs/namespacemembers.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down
2 changes: 1 addition & 1 deletion docs/namespacemembers_func.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down
6 changes: 3 additions & 3 deletions docs/namespacequickpool.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">quickpool
&#160;<span id="projectnumber">0.2.0</span>
&#160;<span id="projectnumber">1.1.0</span>
</div>
<div id="projectbrief">An easy-to-use, header-only work stealing thread pool in C++11</div>
</td>
Expand Down Expand Up @@ -140,7 +140,7 @@ <h2 class="memtitle"><span class="permalink"><a href="#abe02477646e2dfceb9b86578
</dl>
<dl class="section return"><dt>Returns</dt><dd>A <code>std::future</code> for the task. Call <code>future.get()</code> to retrieve the results at a later point in time (blocking). </dd></dl>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00450">450</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00466">466</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>

</div>
</div>
Expand Down Expand Up @@ -181,7 +181,7 @@ <h2 class="memtitle"><span class="permalink"><a href="#a06e138ab2370dc5055a64995
</dd>
</dl>

<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00437">437</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>
<p class="definition">Definition at line <a class="el" href="quickpool_8hpp_source.html#l00453">453</a> of file <a class="el" href="quickpool_8hpp_source.html">quickpool.hpp</a>.</p>

</div>
</div>
Expand Down
Loading

0 comments on commit 8b9c6e0

Please sign in to comment.