We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7efba4f commit 6763a40Copy full SHA for 6763a40
library/core/src/slice/index.rs
@@ -81,7 +81,7 @@ mod private_slice_index {
81
impl Sealed for ops::RangeInclusive<usize> {}
82
#[stable(feature = "slice_get_slice", since = "1.28.0")]
83
impl Sealed for ops::RangeToInclusive<usize> {}
84
- #[stable(feature = "slice_index_with_ops_bound_pair", since = "1.51.0")]
+ #[stable(feature = "slice_index_with_ops_bound_pair", since = "1.53.0")]
85
impl Sealed for (ops::Bound<usize>, ops::Bound<usize>) {}
86
}
87
@@ -622,7 +622,7 @@ fn into_slice_range(
622
start..end
623
624
625
-#[stable(feature = "slice_index_with_ops_bound_pair", since = "1.51.0")]
+#[stable(feature = "slice_index_with_ops_bound_pair", since = "1.53.0")]
626
unsafe impl<T> SliceIndex<[T]> for (ops::Bound<usize>, ops::Bound<usize>) {
627
type Output = [T];
628
0 commit comments