rangeUntil method

Range<C> rangeUntil(
  1. C other
)

Creates a range from this (inclusive) to other (exclusive).

Implementation

Range<C> rangeUntil(C other) => Range(this, other);