Skip to content

Commit 5e0a211

Browse files
committed
Add omitted exclusive_scan signatures to synopsis
1 parent 60a1256 commit 5e0a211

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

algorithms.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -560,18 +560,40 @@ <h1>Header <code>&lt;experimental/numeric&gt;</code> synopsis</h1>
560560
OutputIterator
561561
inclusive_scan(InputIterator first, InputIterator last,
562562
OutputIterator result);
563+
<ins>template&lt;class ExecutionPolicy,
564+
class InputIterator, class OutputIterator&gt;
565+
OutputIterator
566+
inclusive_scan(ExecutionPolicy&amp;&amp; exec,
567+
InputIterator first, InputIterator last,
568+
OutputIterator result);</ins>
563569
template&lt;class InputIterator, class OutputIterator,
564570
class BinaryOperation&gt;
565571
OutputIterator
566572
inclusive_scan(InputIterator first, InputIterator last,
567573
OutputIterator result,
568574
BinaryOperation binary_op);
575+
<ins>template&lt;class ExecutionPolicy,
576+
class InputIterator, class OutputIterator,
577+
class BinaryOperation&gt;
578+
OutputIterator
579+
inclusive_scan(ExecutionPolicy&amp;&amp; exec,
580+
InputIterator first, InputIterator last,
581+
OutputIterator result,
582+
BinaryOperation binary_op);</ins>
569583
template&lt;class InputIterator, class OutputIterator,
570584
class BinaryOperation, class T&gt;
571585
OutputIterator
572586
inclusive_scan(InputIterator first, InputIterator last,
573587
OutputIterator result,
574588
BinaryOperation binary_op, T init);
589+
<ins>template&lt;class ExecutionPolicy,
590+
class InputIterator, class OutputIterator,
591+
class BinaryOperation, class T&gt;
592+
OutputIterator
593+
inclusive_scan(ExecutionPolicy&amp;&amp; exec,
594+
InputIterator first, InputIterator last,
595+
OutputIterator result,
596+
BinaryOperation binary_op, T init);</ins>
575597

576598
template&lt;class InputIterator, class UnaryOperation,
577599
class T, class BinaryOperation&gt;

0 commit comments

Comments
 (0)