reduce method

  1. @override
T reduce(
  1. T combine(
    1. T value,
    2. T element
    )
)
override

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);