combineAll

open fun Collection<A>.combineAll(): A

Deprecated

use fold instead

Replace with

fold()

Combine an Collection of A values.


open fun combineAll(elems: List<A>): A

Deprecated

use fold instead

Replace with

fold(elems)

Combine an array of A values.