Skip to content

Commit fa9dd27

Browse files
authored
Rollup merge of rust-lang#44640 - budziq:stabilize_splice, r=dtolnay
Stabilized vec_splice and modified splice tracking issue This stabilizes the vec_splice (Vec part of splice RFC) Fixes rust-lang#32310.
2 parents 156698e + 6b167f9 commit fa9dd27

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
# `splice`
22

3-
The tracking issue for this feature is: [#32310]
3+
The tracking issue for this feature is: [#44643]
44

5-
[#32310]: https://github.com/rust-lang/rust/issues/32310
5+
[#44643]: https://github.com/rust-lang/rust/issues/44643
66

77
------------------------
88

9-
The `splice()` method on `Vec` and `String` allows you to replace a range
10-
of values in a vector or string with another range of values, and returns
11-
the replaced values.
9+
The `splice()` method on `String` allows you to replace a range
10+
of values in a string with another range of values.
1211

1312
A simple example:
1413

@@ -20,4 +19,4 @@ let beta_offset = s.find('β').unwrap_or(s.len());
2019
// Replace the range up until the β from the string
2120
s.splice(..beta_offset, "Α is capital alpha; ");
2221
assert_eq!(s, "Α is capital alpha; β is beta");
23-
```
22+
```

src/liballoc/string.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1451,7 +1451,7 @@ impl String {
14511451
/// s.splice(..beta_offset, "Α is capital alpha; ");
14521452
/// assert_eq!(s, "Α is capital alpha; β is beta");
14531453
/// ```
1454-
#[unstable(feature = "splice", reason = "recently added", issue = "32310")]
1454+
#[unstable(feature = "splice", reason = "recently added", issue = "44643")]
14551455
pub fn splice<R>(&mut self, range: R, replace_with: &str)
14561456
where R: RangeArgument<usize>
14571457
{

src/liballoc/vec.rs

+6-7
Original file line numberDiff line numberDiff line change
@@ -1943,15 +1943,14 @@ impl<T> Vec<T> {
19431943
/// # Examples
19441944
///
19451945
/// ```
1946-
/// #![feature(splice)]
19471946
/// let mut v = vec![1, 2, 3];
19481947
/// let new = [7, 8];
19491948
/// let u: Vec<_> = v.splice(..2, new.iter().cloned()).collect();
19501949
/// assert_eq!(v, &[7, 8, 3]);
19511950
/// assert_eq!(u, &[1, 2]);
19521951
/// ```
19531952
#[inline]
1954-
#[unstable(feature = "splice", reason = "recently added", issue = "32310")]
1953+
#[stable(feature = "vec_splice", since = "1.22.0")]
19551954
pub fn splice<R, I>(&mut self, range: R, replace_with: I) -> Splice<I::IntoIter>
19561955
where R: RangeArgument<usize>, I: IntoIterator<Item=T>
19571956
{
@@ -2554,13 +2553,13 @@ impl<'a, T> InPlace<T> for PlaceBack<'a, T> {
25542553
/// [`splice()`]: struct.Vec.html#method.splice
25552554
/// [`Vec`]: struct.Vec.html
25562555
#[derive(Debug)]
2557-
#[unstable(feature = "splice", reason = "recently added", issue = "32310")]
2556+
#[stable(feature = "vec_splice", since = "1.22.0")]
25582557
pub struct Splice<'a, I: Iterator + 'a> {
25592558
drain: Drain<'a, I::Item>,
25602559
replace_with: I,
25612560
}
25622561

2563-
#[unstable(feature = "splice", reason = "recently added", issue = "32310")]
2562+
#[stable(feature = "vec_splice", since = "1.22.0")]
25642563
impl<'a, I: Iterator> Iterator for Splice<'a, I> {
25652564
type Item = I::Item;
25662565

@@ -2573,18 +2572,18 @@ impl<'a, I: Iterator> Iterator for Splice<'a, I> {
25732572
}
25742573
}
25752574

2576-
#[unstable(feature = "splice", reason = "recently added", issue = "32310")]
2575+
#[stable(feature = "vec_splice", since = "1.22.0")]
25772576
impl<'a, I: Iterator> DoubleEndedIterator for Splice<'a, I> {
25782577
fn next_back(&mut self) -> Option<Self::Item> {
25792578
self.drain.next_back()
25802579
}
25812580
}
25822581

2583-
#[unstable(feature = "splice", reason = "recently added", issue = "32310")]
2582+
#[stable(feature = "vec_splice", since = "1.22.0")]
25842583
impl<'a, I: Iterator> ExactSizeIterator for Splice<'a, I> {}
25852584

25862585

2587-
#[unstable(feature = "splice", reason = "recently added", issue = "32310")]
2586+
#[stable(feature = "vec_splice", since = "1.22.0")]
25882587
impl<'a, I: Iterator> Drop for Splice<'a, I> {
25892588
fn drop(&mut self) {
25902589
// exhaust drain first

0 commit comments

Comments
 (0)