reduce method
Reduces a collection to a single value by iteratively combining elements of the collection using the provided function.
Implementation
@override
T reduce(T Function(T value, T element) combine) => _s.reduce(combine);
Reduces a collection to a single value by iteratively combining elements of the collection using the provided function.
@override
T reduce(T Function(T value, T element) combine) => _s.reduce(combine);