cotila  1.2.1
A compile time linear algebra system

◆ accumulate()

template<typename T , std::size_t N, typename F , typename U >
constexpr U cotila::accumulate ( const vector< T, N > &  v,
init,
F &&  f 
)
Parameters
van N-vector of type T
initthe initial value
fa function of type F that operates between U and vector elements of type T
Returns
$ f\left(f\left(\ldots f\left(\textrm{init}, \textbf{v}_1\right), \ldots\right), \textbf{v}_N \right) $

Accumulates an operation over the elements. This is equivalent to a functional fold.