reduce method
Reduces the stream to a single value using combine.
Implementation
LxFuture<T> reduce(T Function(T previous, T element) combine) {
return LxFuture<T>(valueStream.reduce(combine));
}
Reduces the stream to a single value using combine.
LxFuture<T> reduce(T Function(T previous, T element) combine) {
return LxFuture<T>(valueStream.reduce(combine));
}