File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ pub unsafe trait Step: Clone + PartialOrd + Sized {
106
106
/// For any `a` and `n`, where no overflow occurs:
107
107
///
108
108
/// * `Step::forward_unchecked(a, n)` is equivalent to `Step::forward(a, n)`
109
- #[ unstable( feature = "unchecked_math " , reason = "niche optimization path " , issue = "none " ) ]
109
+ #[ unstable( feature = "step_trait_ext " , reason = "recently added " , issue = "42168 " ) ]
110
110
unsafe fn forward_unchecked ( start : Self , count : usize ) -> Self {
111
111
Step :: forward ( start, count)
112
112
}
@@ -178,7 +178,7 @@ pub unsafe trait Step: Clone + PartialOrd + Sized {
178
178
/// For any `a` and `n`, where no overflow occurs:
179
179
///
180
180
/// * `Step::backward_unchecked(a, n)` is equivalent to `Step::backward(a, n)`
181
- #[ unstable( feature = "unchecked_math " , reason = "niche optimization path " , issue = "none " ) ]
181
+ #[ unstable( feature = "step_trait_ext " , reason = "recently added " , issue = "42168 " ) ]
182
182
unsafe fn backward_unchecked ( start : Self , count : usize ) -> Self {
183
183
Step :: backward ( start, count)
184
184
}
You can’t perform that action at this time.
0 commit comments