Add example/test to <int types>::BITS.

This commit is contained in:
Mara Bos 2020-09-08 20:24:55 +02:00
parent 3f68ae47df
commit 5c30a16fa0
1 changed files with 26 additions and 6 deletions

View File

@ -348,9 +348,19 @@ $EndFeature, "
pub const MAX: Self = !Self::MIN;
}
/// The size of this integer type in bits.
#[unstable(feature = "int_bits_const", issue = "none")]
pub const BITS: u32 = $BITS;
doc_comment! {
concat!("The size of this integer type in bits.
# Examples
```
", $Feature, "#![feature(int_bits_const)]
assert_eq!(", stringify!($SelfT), "::BITS, ", stringify!($BITS), ");",
$EndFeature, "
```"),
#[unstable(feature = "int_bits_const", issue = "none")]
pub const BITS: u32 = $BITS;
}
doc_comment! {
concat!("Converts a string slice in a given base to an integer.
@ -2605,9 +2615,19 @@ $EndFeature, "
pub const MAX: Self = !0;
}
/// The size of this integer type in bits.
#[unstable(feature = "int_bits_const", issue = "none")]
pub const BITS: u32 = $BITS;
doc_comment! {
concat!("The size of this integer type in bits.
# Examples
```
", $Feature, "#![feature(int_bits_const)]
assert_eq!(", stringify!($SelfT), "::BITS, ", stringify!($BITS), ");",
$EndFeature, "
```"),
#[unstable(feature = "int_bits_const", issue = "none")]
pub const BITS: u32 = $BITS;
}
doc_comment! {
concat!("Converts a string slice in a given base to an integer.