@@ -632,6 +632,15 @@ <h1>Header <code><experimental/numeric></code> synopsis</h1>
632
632
OutputIterator result,
633
633
UnaryOperation unary_op,
634
634
BinaryOperation binary_op);
635
+ < ins > template<class ExecutionPolicy,
636
+ class InputIterator, class OutputIterator,
637
+ class UnaryOperation, class BinaryOperation>
638
+ OutputIterator
639
+ transform_inclusive_scan(ExecutionPolicy&& exec,
640
+ InputIterator first, InputIterator last,
641
+ OutputIterator result,
642
+ UnaryOperation unary_op,
643
+ BinaryOperation binary_op);</ ins >
635
644
636
645
template<class InputIterator, class OutputIterator,
637
646
class UnaryOperation, class BinaryOperation, class T>
@@ -640,6 +649,15 @@ <h1>Header <code><experimental/numeric></code> synopsis</h1>
640
649
OutputIterator result,
641
650
UnaryOperation unary_op,
642
651
BinaryOperation binary_op, T init);
652
+ < ins > template<class ExecutionPolicy,
653
+ class InputIterator, class OutputIterator,
654
+ class UnaryOperation, class BinaryOperation, class T>
655
+ OutputIterator
656
+ transform_inclusive_scan(ExecutionPolicy&& exec,
657
+ InputIterator first, InputIterator last,
658
+ OutputIterator result,
659
+ UnaryOperation unary_op,
660
+ BinaryOperation binary_op, T init);</ ins >
643
661
}
644
662
}
645
663
}
0 commit comments