ReduceFunc


Description:

public delegate U ReduceFunc<T,U> (U accumulator, T element)

A function that accumulates a value by combining an accumulator with each element.

Parameters:

accumulator

the current accumulated value.

element

the current element.

Returns:

the new accumulated value.


Namespace: Vala.Collections
Package: Valacore