mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-03 17:35:28 +03:00
4e2797dd76
Negating a non-zero integer currently requires unpacking to a
primitive and re-wrapping. Since negation of non-zero signed
integers always produces a non-zero result, it is safe to
implement `Neg` for `NonZeroI{N}`.
The new `impl` is marked as stable because trait implementations
for two stable types can't be marked unstable.