overlaps method

bool overlaps(
  1. NumericExtents other
)

Implementation

bool overlaps(NumericExtents other) {
  return _containsValue(other.min.toDouble()) ||
      _containsValue(other.max.toDouble()) ||
      other._containsValue(min.toDouble()) ||
      other._containsValue(max.toDouble());
}