Skip to content

Commit 60a1256

Browse files
committed
Add omitted exclusive_scan signatures to synopsis
1 parent 46e5311 commit 60a1256

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

algorithms.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,12 +533,28 @@ <h1>Header <code>&lt;experimental/numeric&gt;</code> synopsis</h1>
533533
exclusive_scan(InputIterator first, InputIterator last,
534534
OutputIterator result,
535535
T init);
536+
<ins>template&lt;class ExecutionPolicy,
537+
class InputIterator, class OutputIterator,
538+
class T&gt;
539+
OutputIterator
540+
exclusive_scan(ExecutionPolicy&amp;&amp; exec,
541+
InputIterator first, InputIterator last,
542+
OutputIterator result,
543+
T init);</ins>
536544
template&lt;class InputIterator, class OutputIterator,
537545
class T, class BinaryOperation&gt;
538546
OutputIterator
539547
exclusive_scan(InputIterator first, InputIterator last,
540548
OutputIterator result,
541549
T init, BinaryOperation binary_op);
550+
<ins>template&lt;class ExecutionPolicy,
551+
class InputIterator, class OutputIterator,
552+
class T, class BinaryOperation&gt;
553+
OutputIterator
554+
exclusive_scan(ExecutionPolicy&amp;&amp; exec,
555+
InputIterator first, InputIterator last,
556+
OutputIterator result,
557+
T init, BinaryOperation binary_op);</ins>
542558

543559
template&lt;class InputIterator, class OutputIterator&gt;
544560
OutputIterator

0 commit comments

Comments
 (0)