Skip to content

Commit b83a275

Browse files
committed
Add missing transform_inclusive_scan signatures to synopsis
1 parent bc25bb1 commit b83a275

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

algorithms.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -632,6 +632,15 @@ <h1>Header <code>&lt;experimental/numeric&gt;</code> synopsis</h1>
632632
OutputIterator result,
633633
UnaryOperation unary_op,
634634
BinaryOperation binary_op);
635+
<ins>template&lt;class ExecutionPolicy,
636+
class InputIterator, class OutputIterator,
637+
class UnaryOperation, class BinaryOperation&gt;
638+
OutputIterator
639+
transform_inclusive_scan(ExecutionPolicy&amp;&amp; exec,
640+
InputIterator first, InputIterator last,
641+
OutputIterator result,
642+
UnaryOperation unary_op,
643+
BinaryOperation binary_op);</ins>
635644

636645
template&lt;class InputIterator, class OutputIterator,
637646
class UnaryOperation, class BinaryOperation, class T&gt;
@@ -640,6 +649,15 @@ <h1>Header <code>&lt;experimental/numeric&gt;</code> synopsis</h1>
640649
OutputIterator result,
641650
UnaryOperation unary_op,
642651
BinaryOperation binary_op, T init);
652+
<ins>template&lt;class ExecutionPolicy,
653+
class InputIterator, class OutputIterator,
654+
class UnaryOperation, class BinaryOperation, class T&gt;
655+
OutputIterator
656+
transform_inclusive_scan(ExecutionPolicy&amp;&amp; exec,
657+
InputIterator first, InputIterator last,
658+
OutputIterator result,
659+
UnaryOperation unary_op,
660+
BinaryOperation binary_op, T init);</ins>
643661
}
644662
}
645663
}

0 commit comments

Comments
 (0)