File tree 12 files changed +36
-0
lines changed
12 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1
1
//! The 128-bit signed integer type.
2
2
//!
3
3
//! *[See also the `i128` primitive type](../../std/primitive.i128.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "i128" , since = "1.26.0" ) ]
6
9
Original file line number Diff line number Diff line change 1
1
//! The 16-bit signed integer type.
2
2
//!
3
3
//! *[See also the `i16` primitive type](../../std/primitive.i16.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
6
9
Original file line number Diff line number Diff line change 1
1
//! The 32-bit signed integer type.
2
2
//!
3
3
//! *[See also the `i32` primitive type](../../std/primitive.i32.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
6
9
Original file line number Diff line number Diff line change 1
1
//! The 64-bit signed integer type.
2
2
//!
3
3
//! *[See also the `i64` primitive type](../../std/primitive.i64.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
6
9
Original file line number Diff line number Diff line change 1
1
//! The 8-bit signed integer type.
2
2
//!
3
3
//! *[See also the `i8` primitive type](../../std/primitive.i8.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
6
9
Original file line number Diff line number Diff line change 1
1
//! The pointer-sized signed integer type.
2
2
//!
3
3
//! *[See also the `isize` primitive type](../../std/primitive.isize.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
6
9
Original file line number Diff line number Diff line change 1
1
//! The 128-bit unsigned integer type.
2
2
//!
3
3
//! *[See also the `u128` primitive type](../../std/primitive.u128.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "i128" , since = "1.26.0" ) ]
6
9
int_module ! { u128 , #[ stable( feature = "i128" , since="1.26.0" ) ] }
Original file line number Diff line number Diff line change 1
1
//! The 16-bit unsigned integer type.
2
2
//!
3
3
//! *[See also the `u16` primitive type](../../std/primitive.u16.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
6
9
Original file line number Diff line number Diff line change 1
1
//! The 32-bit unsigned integer type.
2
2
//!
3
3
//! *[See also the `u32` primitive type](../../std/primitive.u32.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
6
9
Original file line number Diff line number Diff line change 1
1
//! The 64-bit unsigned integer type.
2
2
//!
3
3
//! *[See also the `u64` primitive type](../../std/primitive.u64.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
6
9
Original file line number Diff line number Diff line change 1
1
//! The 8-bit unsigned integer type.
2
2
//!
3
3
//! *[See also the `u8` primitive type](../../std/primitive.u8.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
6
9
Original file line number Diff line number Diff line change 1
1
//! The pointer-sized unsigned integer type.
2
2
//!
3
3
//! *[See also the `usize` primitive type](../../std/primitive.usize.html).*
4
+ //!
5
+ //! Although using these constants won’t cause compilation warnings,
6
+ //! new code should use the associated constants directly on the primitive type.
4
7
5
8
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
6
9
You can’t perform that action at this time.
0 commit comments