1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

add valarray

This commit is contained in:
bolero-MURAKAMI 2016-04-03 13:12:14 +09:00
parent 5ff6029d51
commit 1b8c051008
27 changed files with 3330 additions and 5 deletions

View file

@ -123,7 +123,7 @@ namespace sprout {
)
{
return first != last && sizeof...(Args) + 1 < size
? partial_sum_impl_1(sprout::next(first), last, result, size, binary_op(value, *first), args..., value)
? partial_sum_impl_1(sprout::next(first), last, result, binary_op, size, binary_op(value, *first), args..., value)
: sprout::detail::container_complate(result, args..., value)
;
}