1 | //! Redundant constants module for the [`u128` primitive type][u128]. |
---|---|
2 | //! |
3 | //! New code should use the associated constants directly on the primitive type. |
4 | |
5 | #![stable(feature = "i128", since = "1.26.0")] |
6 | #![deprecated( |
7 | since = "TBD", |
8 | note = "all constants in this module replaced by associated constants on `u128`" |
9 | )] |
10 | |
11 | int_module! { u128, #[stable(feature = "i128", since= "1.26.0")] } |
12 |