(&self, key: K)
| 832 | } |
| 833 | |
| 834 | fn is_in_start_bound(&self, key: K) -> bool { |
| 835 | match self.start { |
| 836 | Bound::Included(k) => self.cursor.comp.cmp(key, k).is_ge(), |
| 837 | Bound::Excluded(k) => self.cursor.comp.cmp(key, k).is_gt(), |
| 838 | Bound::Unbounded => true, |
| 839 | } |
| 840 | } |
| 841 | |
| 842 | fn is_in_end_bound(&self, key: K) -> bool { |
| 843 | match self.end { |