overlaps method
Implementation
bool overlaps(LayoutRange other) {
if (end <= other.start || other.end <= start) {
return false;
}
return true;
}
bool overlaps(LayoutRange other) {
if (end <= other.start || other.end <= start) {
return false;
}
return true;
}