tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
reduce.hpp File Reference

Go to the source code of this file.

Namespaces

namespace  etl
 

Functions

template<typename InputIter>
constexpr auto reduce (InputIter first, InputIter last) -> typename etl::iterator_traits< InputIter >::value_type
 Similar to etl::accumulate.
 
template<typename InputIter, typename T>
constexpr auto reduce (InputIter first, InputIter last, T init) -> T
 Similar to etl::accumulate.
 
template<typename InputIter, typename T, typename BinaryOp>
constexpr auto reduce (InputIter first, InputIter last, T init, BinaryOp op) -> T
 Similar to etl::accumulate.