reduce Or Null
inline fun <S, D : Dimension, T : S> MultiArray<T, D>.reduceOrNull(operation: (acc: S, T) -> S): S?
Content copied to clipboard
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element. Returns null if the collection is empty.