|
9132 | 9132 | \indexlibraryglobal{partial_sum}%
|
9133 | 9133 | \begin{itemdecl}
|
9134 | 9134 | template<class InputIterator, class OutputIterator>
|
9135 |
| - OutputIterator partial_sum( |
9136 |
| - InputIterator first, InputIterator last, |
9137 |
| - OutputIterator result); |
| 9135 | + OutputIterator |
| 9136 | + partial_sum(InputIterator first, InputIterator last, |
| 9137 | + OutputIterator result); |
9138 | 9138 | template<class InputIterator, class OutputIterator, class BinaryOperation>
|
9139 |
| - OutputIterator partial_sum( |
9140 |
| - InputIterator first, InputIterator last, |
9141 |
| - OutputIterator result, BinaryOperation binary_op); |
| 9139 | + OutputIterator |
| 9140 | + partial_sum(InputIterator first, InputIterator last, |
| 9141 | + OutputIterator result, BinaryOperation binary_op); |
9142 | 9142 | \end{itemdecl}
|
9143 | 9143 |
|
9144 | 9144 | \begin{itemdescr}
|
|
9186 | 9186 | \indexlibraryglobal{exclusive_scan}%
|
9187 | 9187 | \begin{itemdecl}
|
9188 | 9188 | template<class InputIterator, class OutputIterator, class T>
|
9189 |
| - OutputIterator exclusive_scan(InputIterator first, InputIterator last, |
9190 |
| - OutputIterator result, T init); |
| 9189 | + OutputIterator |
| 9190 | + exclusive_scan(InputIterator first, InputIterator last, |
| 9191 | + OutputIterator result, T init); |
9191 | 9192 | \end{itemdecl}
|
9192 | 9193 |
|
9193 | 9194 | \begin{itemdescr}
|
|
9202 | 9203 | \indexlibraryglobal{exclusive_scan}%
|
9203 | 9204 | \begin{itemdecl}
|
9204 | 9205 | template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2, class T>
|
9205 |
| - ForwardIterator2 exclusive_scan(ExecutionPolicy&& exec, |
9206 |
| - ForwardIterator1 first, ForwardIterator1 last, |
9207 |
| - ForwardIterator2 result, T init); |
| 9206 | + ForwardIterator2 |
| 9207 | + exclusive_scan(ExecutionPolicy&& exec, |
| 9208 | + ForwardIterator1 first, ForwardIterator1 last, |
| 9209 | + ForwardIterator2 result, T init); |
9208 | 9210 | \end{itemdecl}
|
9209 | 9211 |
|
9210 | 9212 | \begin{itemdescr}
|
|
9220 | 9222 | \indexlibraryglobal{exclusive_scan}%
|
9221 | 9223 | \begin{itemdecl}
|
9222 | 9224 | template<class InputIterator, class OutputIterator, class T, class BinaryOperation>
|
9223 |
| - OutputIterator exclusive_scan(InputIterator first, InputIterator last, |
9224 |
| - OutputIterator result, T init, BinaryOperation binary_op); |
| 9225 | + OutputIterator |
| 9226 | + exclusive_scan(InputIterator first, InputIterator last, |
| 9227 | + OutputIterator result, T init, BinaryOperation binary_op); |
9225 | 9228 | template<class ExecutionPolicy,
|
9226 | 9229 | class ForwardIterator1, class ForwardIterator2, class T, class BinaryOperation>
|
9227 |
| - ForwardIterator2 exclusive_scan(ExecutionPolicy&& exec, |
9228 |
| - ForwardIterator1 first, ForwardIterator1 last, |
9229 |
| - ForwardIterator2 result, T init, BinaryOperation binary_op); |
| 9230 | + ForwardIterator2 |
| 9231 | + exclusive_scan(ExecutionPolicy&& exec, |
| 9232 | + ForwardIterator1 first, ForwardIterator1 last, |
| 9233 | + ForwardIterator2 result, T init, BinaryOperation binary_op); |
9230 | 9234 | \end{itemdecl}
|
9231 | 9235 |
|
9232 | 9236 | \begin{itemdescr}
|
|
9283 | 9287 | \indexlibraryglobal{inclusive_scan}%
|
9284 | 9288 | \begin{itemdecl}
|
9285 | 9289 | template<class InputIterator, class OutputIterator>
|
9286 |
| - OutputIterator inclusive_scan(InputIterator first, InputIterator last, OutputIterator result); |
| 9290 | + OutputIterator |
| 9291 | + inclusive_scan(InputIterator first, InputIterator last, |
| 9292 | + OutputIterator result); |
9287 | 9293 | \end{itemdecl}
|
9288 | 9294 |
|
9289 | 9295 | \begin{itemdescr}
|
|
9298 | 9304 | \indexlibraryglobal{inclusive_scan}%
|
9299 | 9305 | \begin{itemdecl}
|
9300 | 9306 | template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2>
|
9301 |
| - ForwardIterator2 inclusive_scan(ExecutionPolicy&& exec, |
9302 |
| - ForwardIterator1 first, ForwardIterator1 last, |
9303 |
| - ForwardIterator2 result); |
| 9307 | + ForwardIterator2 |
| 9308 | + inclusive_scan(ExecutionPolicy&& exec, |
| 9309 | + ForwardIterator1 first, ForwardIterator1 last, |
| 9310 | + ForwardIterator2 result); |
9304 | 9311 | \end{itemdecl}
|
9305 | 9312 |
|
9306 | 9313 | \begin{itemdescr}
|
|
9315 | 9322 | \indexlibraryglobal{inclusive_scan}%
|
9316 | 9323 | \begin{itemdecl}
|
9317 | 9324 | template<class InputIterator, class OutputIterator, class BinaryOperation>
|
9318 |
| - OutputIterator inclusive_scan(InputIterator first, InputIterator last, |
9319 |
| - OutputIterator result, BinaryOperation binary_op); |
| 9325 | + OutputIterator |
| 9326 | + inclusive_scan(InputIterator first, InputIterator last, |
| 9327 | + OutputIterator result, BinaryOperation binary_op); |
9320 | 9328 | template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
|
9321 | 9329 | class BinaryOperation>
|
9322 |
| - ForwardIterator2 inclusive_scan(ExecutionPolicy&& exec, |
9323 |
| - ForwardIterator1 first, ForwardIterator1 last, |
9324 |
| - ForwardIterator2 result, BinaryOperation binary_op); |
| 9330 | + ForwardIterator2 |
| 9331 | + inclusive_scan(ExecutionPolicy&& exec, |
| 9332 | + ForwardIterator1 first, ForwardIterator1 last, |
| 9333 | + ForwardIterator2 result, BinaryOperation binary_op); |
9325 | 9334 |
|
9326 | 9335 | template<class InputIterator, class OutputIterator, class BinaryOperation, class T>
|
9327 |
| - OutputIterator inclusive_scan(InputIterator first, InputIterator last, |
9328 |
| - OutputIterator result, BinaryOperation binary_op, T init); |
| 9336 | + OutputIterator |
| 9337 | + inclusive_scan(InputIterator first, InputIterator last, |
| 9338 | + OutputIterator result, BinaryOperation binary_op, T init); |
9329 | 9339 | template<class ExecutionPolicy,
|
9330 | 9340 | class ForwardIterator1, class ForwardIterator2, class BinaryOperation, class T>
|
9331 |
| - ForwardIterator2 inclusive_scan(ExecutionPolicy&& exec, |
9332 |
| - ForwardIterator1 first, ForwardIterator1 last, |
9333 |
| - ForwardIterator2 result, BinaryOperation binary_op, T init); |
| 9341 | + ForwardIterator2 |
| 9342 | + inclusive_scan(ExecutionPolicy&& exec, |
| 9343 | + ForwardIterator1 first, ForwardIterator1 last, |
| 9344 | + ForwardIterator2 result, BinaryOperation binary_op, T init); |
9334 | 9345 | \end{itemdecl}
|
9335 | 9346 |
|
9336 | 9347 | \begin{itemdescr}
|
|
9400 | 9411 | \begin{itemdecl}
|
9401 | 9412 | template<class InputIterator, class OutputIterator, class T,
|
9402 | 9413 | class BinaryOperation, class UnaryOperation>
|
9403 |
| - OutputIterator transform_exclusive_scan(InputIterator first, InputIterator last, |
9404 |
| - OutputIterator result, T init, |
9405 |
| - BinaryOperation binary_op,UnaryOperation unary_op); |
| 9414 | + OutputIterator |
| 9415 | + transform_exclusive_scan(InputIterator first, InputIterator last, |
| 9416 | + OutputIterator result, T init, |
| 9417 | + BinaryOperation binary_op, UnaryOperation unary_op); |
9406 | 9418 | template<class ExecutionPolicy,
|
9407 | 9419 | class ForwardIterator1, class ForwardIterator2, class T,
|
9408 | 9420 | class BinaryOperation, class UnaryOperation>
|
9409 |
| - ForwardIterator2 transform_exclusive_scan(ExecutionPolicy&& exec, |
9410 |
| - ForwardIterator1 first, ForwardIterator1 last, |
9411 |
| - ForwardIterator2 result, T init, |
9412 |
| - BinaryOperation binary_op, UnaryOperation unary_op); |
| 9421 | + ForwardIterator2 |
| 9422 | + transform_exclusive_scan(ExecutionPolicy&& exec, |
| 9423 | + ForwardIterator1 first, ForwardIterator1 last, |
| 9424 | + ForwardIterator2 result, T init, |
| 9425 | + BinaryOperation binary_op, UnaryOperation unary_op); |
9413 | 9426 | \end{itemdecl}
|
9414 | 9427 |
|
9415 | 9428 | \begin{itemdescr}
|
|
9473 | 9486 | \begin{itemdecl}
|
9474 | 9487 | template<class InputIterator, class OutputIterator,
|
9475 | 9488 | class BinaryOperation, class UnaryOperation>
|
9476 |
| - OutputIterator transform_inclusive_scan(InputIterator first, InputIterator last, |
9477 |
| - OutputIterator result, |
9478 |
| - BinaryOperation binary_op, UnaryOperation unary_op); |
| 9489 | + OutputIterator |
| 9490 | + transform_inclusive_scan(InputIterator first, InputIterator last, |
| 9491 | + OutputIterator result, |
| 9492 | + BinaryOperation binary_op, UnaryOperation unary_op); |
9479 | 9493 | template<class ExecutionPolicy,
|
9480 | 9494 | class ForwardIterator1, class ForwardIterator2,
|
9481 | 9495 | class BinaryOperation, class UnaryOperation>
|
9482 |
| - ForwardIterator2 transform_inclusive_scan(ExecutionPolicy&& exec, |
9483 |
| - ForwardIterator1 first, ForwardIterator1 last, |
9484 |
| - ForwardIterator2 result, |
9485 |
| - BinaryOperation binary_op, UnaryOperation unary_op); |
| 9496 | + ForwardIterator2 |
| 9497 | + transform_inclusive_scan(ExecutionPolicy&& exec, |
| 9498 | + ForwardIterator1 first, ForwardIterator1 last, |
| 9499 | + ForwardIterator2 result, |
| 9500 | + BinaryOperation binary_op, UnaryOperation unary_op); |
9486 | 9501 | template<class InputIterator, class OutputIterator,
|
9487 | 9502 | class BinaryOperation, class UnaryOperation, class T>
|
9488 |
| - OutputIterator transform_inclusive_scan(InputIterator first, InputIterator last, |
9489 |
| - OutputIterator result, |
9490 |
| - BinaryOperation binary_op, UnaryOperation unary_op, |
9491 |
| - T init); |
| 9503 | + OutputIterator |
| 9504 | + transform_inclusive_scan(InputIterator first, InputIterator last, |
| 9505 | + OutputIterator result, |
| 9506 | + BinaryOperation binary_op, UnaryOperation unary_op, |
| 9507 | + T init); |
9492 | 9508 | template<class ExecutionPolicy,
|
9493 | 9509 | class ForwardIterator1, class ForwardIterator2,
|
9494 | 9510 | class BinaryOperation, class UnaryOperation, class T>
|
9495 |
| - ForwardIterator2 transform_inclusive_scan(ExecutionPolicy&& exec, |
9496 |
| - ForwardIterator1 first, ForwardIterator1 last, |
9497 |
| - ForwardIterator2 result, |
9498 |
| - BinaryOperation binary_op, UnaryOperation unary_op, |
9499 |
| - T init); |
| 9511 | + ForwardIterator2 |
| 9512 | + transform_inclusive_scan(ExecutionPolicy&& exec, |
| 9513 | + ForwardIterator1 first, ForwardIterator1 last, |
| 9514 | + ForwardIterator2 result, |
| 9515 | + BinaryOperation binary_op, UnaryOperation unary_op, |
| 9516 | + T init); |
9500 | 9517 | \end{itemdecl}
|
9501 | 9518 |
|
9502 | 9519 | \begin{itemdescr}
|
|
9571 | 9588 | \begin{itemdecl}
|
9572 | 9589 | template<class InputIterator, class OutputIterator>
|
9573 | 9590 | OutputIterator
|
9574 |
| - adjacent_difference(InputIterator first, InputIterator last, OutputIterator result); |
| 9591 | + adjacent_difference(InputIterator first, InputIterator last, |
| 9592 | + OutputIterator result); |
9575 | 9593 | template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2>
|
9576 | 9594 | ForwardIterator2
|
9577 | 9595 | adjacent_difference(ExecutionPolicy&& exec,
|
|
0 commit comments