8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e9e30d commit 9586643Copy full SHA for 9586643
library/core/src/num/nonzero.rs
@@ -267,7 +267,7 @@ nonzero_leading_trailing_zeros! {
267
macro_rules! nonzero_integers_div {
268
( $( $Ty: ident($Int: ty); )+ ) => {
269
$(
270
- #[stable(feature = "nonzero_div", since = "1.50.0")]
+ #[stable(feature = "nonzero_div", since = "1.51.0")]
271
impl Div<$Ty> for $Int {
272
type Output = $Int;
273
/// This operation rounds towards zero,
@@ -280,7 +280,7 @@ macro_rules! nonzero_integers_div {
280
}
281
282
283
284
impl Rem<$Ty> for $Int {
285
286
/// This operation satisfies `n % d == n - (n / d) * d`, and cannot panic.
0 commit comments