Skip to content

Commit 2b15928

Browse files
committed
Add omitted transform_reduce signature to synopsis
1 parent 5e0a211 commit 2b15928

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

algorithms.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -600,6 +600,13 @@ <h1>Header <code>&lt;experimental/numeric&gt;</code> synopsis</h1>
600600
T transform_reduce(InputIterator first, InputIterator last,
601601
UnaryOperation unary_op,
602602
T init, BinaryOperation binary_op);
603+
<ins>template&lt;class ExecutionPolicy,
604+
class InputIterator, class UnaryOperation,
605+
class T, class BinaryOperation&gt;
606+
T transform_reduce(ExecutionPolicy&amp;&amp; exec,
607+
InputIterator first, InputIterator last,
608+
UnaryOperation unary_op,
609+
T init, BinaryOperation binary_op);</ins>
603610

604611
template&lt;class InputIterator, class OutputIterator,
605612
class UnaryOperation, class T, class BinaryOperation&gt;

0 commit comments

Comments
 (0)