downTo method

Range<double> downTo(
  1. double toInclusive
)

Returns a range from this value down to the specified toInclusive value, inclusively.

Implementation

Range<double> downTo(double toInclusive) => Range.range(this, toInclusive);