(&self, key: K)
| 828 | C: Comparator<K>, |
| 829 | { |
| 830 | fn is_in_bounds(&self, key: K) -> bool { |
| 831 | self.is_in_start_bound(key) && self.is_in_end_bound(key) |
| 832 | } |
| 833 | |
| 834 | fn is_in_start_bound(&self, key: K) -> bool { |
| 835 | match self.start { |
no test coverage detected