overlaps method

bool overlaps(
  1. SubRange range
)

Implementation

bool overlaps(SubRange range) => range.low <= high && low <= range.high;