Skip to main content

allen_intervals/relation/
overlaps.rs

1/// Methods for checking for a "overlaps" relation between intervals.
2pub trait Overlaps<T>: Sized {
3    /// Returns `true` iff `self` overlaps `other.0.
4    ///
5    /// ```plain
6    /// self:  ┌────────┐
7    /// other:      └────────┘
8    /// ```
9    #[inline]
10    fn overlaps(&self, _other: &T) -> bool {
11        false
12    }
13
14    /// Returns `true` iff `self` is overlapped by `other.0.
15    ///
16    /// ```plain
17    /// self:       ┌────────┐
18    /// other: └────────┘
19    /// ```
20    #[inline]
21    fn is_overlapped_by(&self, other: &T) -> bool
22    where
23        T: Overlaps<Self>,
24    {
25        other.overlaps(self)
26    }
27}