beforeInclusive<T extends Comparable> static method

  1. @Deprecated('Use before as it is more clear')
bool beforeInclusive<T extends Comparable>(
  1. Range<T> a,
  2. Range<T> b
)

Returns if a ends before b starts.

Implementation

@Deprecated('Use before as it is more clear')
static bool beforeInclusive<T extends Comparable>(Range<T> a, Range<T> b) {
  return a.isBefore(b);
}