• Home
  • Raw
  • Download

Lines Matching refs:Bound

104     fn start_bound(&self) -> std::ops::Bound<&usize> {  in start_bound()
105 std::ops::Bound::Included(&self.start_inclusive) in start_bound()
108 fn end_bound(&self) -> std::ops::Bound<&usize> { in end_bound()
109 std::ops::Bound::Included(&self.end_inclusive) in end_bound()
199 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_fixed()
200 assert_eq!(range.end_bound(), std::ops::Bound::Included(&5)); in from_fixed()
210 assert_eq!(range.start_bound(), std::ops::Bound::Included(&0)); in from_fixed_empty()
211 assert_eq!(range.end_bound(), std::ops::Bound::Included(&0)); in from_fixed_empty()
221 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_range()
222 assert_eq!(range.end_bound(), std::ops::Bound::Included(&9)); in from_range()
232 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_range_inclusive()
233 assert_eq!(range.end_bound(), std::ops::Bound::Included(&10)); in from_range_inclusive()
243 assert_eq!(range.start_bound(), std::ops::Bound::Included(&0)); in from_range_full()
244 assert_eq!(range.end_bound(), std::ops::Bound::Included(&usize::MAX)); in from_range_full()
254 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_range_from()
255 assert_eq!(range.end_bound(), std::ops::Bound::Included(&usize::MAX)); in from_range_from()
265 assert_eq!(range.start_bound(), std::ops::Bound::Included(&0)); in from_range_to()
266 assert_eq!(range.end_bound(), std::ops::Bound::Included(&9)); in from_range_to()
276 assert_eq!(range.start_bound(), std::ops::Bound::Included(&0)); in from_range_to_inclusive()
277 assert_eq!(range.end_bound(), std::ops::Bound::Included(&10)); in from_range_to_inclusive()