strictlyRightOf method

bool strictlyRightOf(
  1. Range<T> range
)

Implementation

bool strictlyRightOf(Range<T> range) {
  if (empty || range.empty) {
    return false;
  }
  return _compareBounds(lowerBound, range.upperBound) > 0;
}