(&self)
| 228 | } |
| 229 | |
| 230 | pub fn is_bottom(&self) -> bool { |
| 231 | self.high < self.low |
| 232 | } |
| 233 | |
| 234 | pub fn less_than(&self, other: &Interval) -> Option<bool> { |
| 235 | if self.is_bottom() || self.is_top() || other.is_bottom() || other.is_top() { |
no outgoing calls
no test coverage detected