Folds the stream into a single LxFuture result.
LxFuture<R> fold<R>( R initialValue, R Function(R previous, T element) combine) { return LxFuture<R>(valueStream.fold(initialValue, combine)); }