coordReduce<T> method

T? coordReduce<T>(
  1. CoordReduceCallback<T> callback,
  2. T? initialValue, [
  3. bool excludeWrapCoord = false
])

Implementation

T? coordReduce<T>(
  meta.CoordReduceCallback<T> callback,
  T? initialValue, [
  bool excludeWrapCoord = false,
]) {
  return meta.coordReduce<T>(
    this,
    callback,
    initialValue,
    excludeWrapCoord,
  );
}