overlapsOrTouches method

bool overlapsOrTouches(
  1. DirtySpan other
)

Implementation

bool overlapsOrTouches(DirtySpan other) =>
    start <= other.end && end >= other.start;