overlaps method
Check whether this range overlaps with another range.
that
The other range to compare to.
Returns true if this range overlaps with the other range, false otherwise.
Implementation
bool overlaps(Range<TYPE> that) {
return _seOverlap(that) || _esOverlap(that);
}