Skip to content

Commit f6e4c74

Browse files
committed
Make split_inclusive() on an empty slice yield an empty output
`[].split_inclusive()` currently yields a single, empty slice. That's different from `"".split_inslusive()`, which yields no output at all. I think that makes the slice version harder to use. The case where I ran into this bug was when writing code for generating a diff between two slices of bytes. I wanted to prefix removed lines with "-" and a added lines with "+". Due to `split_inclusive()`'s current behavior, that means that my code prints just a "-" or "+" for empty files. I suspect most existing callers have similar "bugs" (which would be fixed by this patch). Closes #89716.
1 parent 1067e2c commit f6e4c74

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

library/alloc/tests/slice.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,7 @@ fn test_splitator_inclusive() {
863863
assert_eq!(xs.split_inclusive(|_| true).collect::<Vec<&[i32]>>(), splits);
864864

865865
let xs: &[i32] = &[];
866-
let splits: &[&[i32]] = &[&[]];
866+
let splits: &[&[i32]] = &[];
867867
assert_eq!(xs.split_inclusive(|x| *x == 5).collect::<Vec<&[i32]>>(), splits);
868868
}
869869

@@ -883,7 +883,7 @@ fn test_splitator_inclusive_reverse() {
883883
assert_eq!(xs.split_inclusive(|_| true).rev().collect::<Vec<_>>(), splits);
884884

885885
let xs: &[i32] = &[];
886-
let splits: &[&[i32]] = &[&[]];
886+
let splits: &[&[i32]] = &[];
887887
assert_eq!(xs.split_inclusive(|x| *x == 5).rev().collect::<Vec<_>>(), splits);
888888
}
889889

@@ -903,7 +903,7 @@ fn test_splitator_mut_inclusive() {
903903
assert_eq!(xs.split_inclusive_mut(|_| true).collect::<Vec<_>>(), splits);
904904

905905
let xs: &mut [i32] = &mut [];
906-
let splits: &[&[i32]] = &[&[]];
906+
let splits: &[&[i32]] = &[];
907907
assert_eq!(xs.split_inclusive_mut(|x| *x == 5).collect::<Vec<_>>(), splits);
908908
}
909909

@@ -923,7 +923,7 @@ fn test_splitator_mut_inclusive_reverse() {
923923
assert_eq!(xs.split_inclusive_mut(|_| true).rev().collect::<Vec<_>>(), splits);
924924

925925
let xs: &mut [i32] = &mut [];
926-
let splits: &[&[i32]] = &[&[]];
926+
let splits: &[&[i32]] = &[];
927927
assert_eq!(xs.split_inclusive_mut(|x| *x == 5).rev().collect::<Vec<_>>(), splits);
928928
}
929929

library/core/src/slice/iter.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,8 @@ where
479479
impl<'a, T: 'a, P: FnMut(&T) -> bool> SplitInclusive<'a, T, P> {
480480
#[inline]
481481
pub(super) fn new(slice: &'a [T], pred: P) -> Self {
482-
Self { v: slice, pred, finished: false }
482+
let finished = slice.is_empty();
483+
Self { v: slice, pred, finished }
483484
}
484485
}
485486

@@ -727,7 +728,8 @@ where
727728
impl<'a, T: 'a, P: FnMut(&T) -> bool> SplitInclusiveMut<'a, T, P> {
728729
#[inline]
729730
pub(super) fn new(slice: &'a mut [T], pred: P) -> Self {
730-
Self { v: slice, pred, finished: false }
731+
let finished = slice.is_empty();
732+
Self { v: slice, pred, finished }
731733
}
732734
}
733735

0 commit comments

Comments
 (0)