Skip to content

Commit f676f2f

Browse files
Philippe-Choletjswrenn
authored andcommitted
Remove the unspecified check about .get(exhausted_range_inclusive)
`RangeInclusive::is_empty` (rust 1.47+) is in conflict with our MSRV (1.43.1) so we can't use it yet. The unspecified behavior is documented in `Itertools::get` so we simply remove this.
1 parent 734742c commit f676f2f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/iter_index.rs

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ where
5252
type Output = Take<Skip<I>>;
5353

5454
fn index(self, iter: I) -> Self::Output {
55-
debug_assert!(!self.is_empty(), "The given `RangeInclusive` is exhausted. The result of indexing with an exhausted `RangeInclusive` is unspecified.");
5655
iter.skip(*self.start())
5756
.take((1 + *self.end()).saturating_sub(*self.start()))
5857
}

0 commit comments

Comments
 (0)