We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e0a211 commit 2b15928Copy full SHA for 2b15928
algorithms.html
@@ -600,6 +600,13 @@ <h1>Header <code><experimental/numeric></code> synopsis</h1>
600
T transform_reduce(InputIterator first, InputIterator last,
601
UnaryOperation unary_op,
602
T init, BinaryOperation binary_op);
603
+ <ins>template<class ExecutionPolicy,
604
+ class InputIterator, class UnaryOperation,
605
+ class T, class BinaryOperation>
606
+ T transform_reduce(ExecutionPolicy&& exec,
607
+ InputIterator first, InputIterator last,
608
+ UnaryOperation unary_op,
609
+ T init, BinaryOperation binary_op);</ins>
610
611
template<class InputIterator, class OutputIterator,
612
class UnaryOperation, class T, class BinaryOperation>
0 commit comments