2015-08-17 13:23:36 -07:00
|
|
|
|
//! The 32-bit unsigned integer type.
|
|
|
|
|
//!
|
2016-03-01 20:44:48 +08:00
|
|
|
|
//! *[See also the `u32` primitive type](../../std/primitive.u32.html).*
|
2020-02-04 23:00:40 +01:00
|
|
|
|
//!
|
|
|
|
|
//! Although using these constants won’t cause compilation warnings,
|
|
|
|
|
//! new code should use the associated constants directly on the primitive type.
|
2014-04-30 22:23:26 -07:00
|
|
|
|
|
2015-01-23 21:48:20 -08:00
|
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
2014-05-28 19:53:37 -07:00
|
|
|
|
|
2020-02-04 18:56:04 +01:00
|
|
|
|
int_module! { u32 }
|