| use core::ops::{Bound, Range, RangeBounds}; |
| pub(crate) fn third<A, B, C>(t: (A, B, C)) -> C { |
| pub(crate) fn simplify_range<R>(range: R, len: usize) -> Range<usize> |
| let start = match range.start_bound() { |
| Bound::Included(&i) if i <= len => i, |
| Bound::Excluded(&i) if i < len => i + 1, |
| bound => panic!("range start {:?} should be <= length {}", bound, len), |
| let end = match range.end_bound() { |
| Bound::Excluded(&i) if i <= len => i, |
| Bound::Included(&i) if i < len => i + 1, |
| bound => panic!("range end {:?} should be <= length {}", bound, len), |
| "range start {:?} should be <= range end {:?}", |