Trait ExtNumConst

Source
pub trait ExtNumConst {
    type Num;

    const NUM_ZERO: Option<Self::Num>;
    const NUM_ONE: Self::Num;
    const NUM_TWO: Self::Num;
    const NUM_THREE: Self::Num;
    const NUM_NEG_ONE: Option<Self::Num>;
    const NUM_MIN_POSITIVE: Self::Num;
    const NUM_MAX_NEGATIVE: Option<Self::Num>;
    const NUM_MAX_POWER_OF_TWO: Self::Num;
}
Expand description

Fundamental numeric constants for both integer and floating-point types.

Required Associated Constants§

Source

const NUM_ZERO: Option<Self::Num>

The additive identity (0), if applicable.

Source

const NUM_ONE: Self::Num

The multiplicative identity (1).

Source

const NUM_TWO: Self::Num

The only even prime and the fundamental doubling factor (2).

Source

const NUM_THREE: Self::Num

The smallest odd prime and the first nontrivial divisor (3).

Source

const NUM_NEG_ONE: Option<Self::Num>

The additive inverse of ONE (-1), if applicable.

Source

const NUM_MIN_POSITIVE: Self::Num

The smallest representable positive value.

Source

const NUM_MAX_NEGATIVE: Option<Self::Num>

The greatest representable negative value, if applicable.

Source

const NUM_MAX_POWER_OF_TWO: Self::Num

The maximum power of two within the type’s range.

Required Associated Types§

Source

type Num

The underlying numeric type implementing this trait.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl ExtNumConst for f32

Source§

impl ExtNumConst for f64

Source§

const NUM_ZERO: Option<f64>

Source§

const NUM_ONE: f64 = 1f64

Source§

const NUM_TWO: f64 = 2f64

Source§

const NUM_THREE: f64 = 3f64

Source§

const NUM_NEG_ONE: Option<f64>

Source§

const NUM_MIN_POSITIVE: f64 = 2.2250738585072014E-308f64

Source§

const NUM_MAX_NEGATIVE: Option<f64>

Source§

const NUM_MAX_POWER_OF_TWO: f64 = 8.9884656743115795E+307f64

Source§

type Num = f64

Source§

impl ExtNumConst for i8

Source§

impl ExtNumConst for i16

Source§

impl ExtNumConst for i32

Source§

impl ExtNumConst for i64

Source§

impl ExtNumConst for i128

Source§

const NUM_ZERO: Option<i128>

Source§

const NUM_ONE: i128 = 1i128

Source§

const NUM_TWO: i128 = 2i128

Source§

const NUM_THREE: i128 = 3i128

Source§

const NUM_NEG_ONE: Option<i128>

Source§

const NUM_MIN_POSITIVE: i128 = 1i128

Source§

const NUM_MAX_NEGATIVE: Option<i128>

Source§

const NUM_MAX_POWER_OF_TWO: i128 = 85_070_591_730_234_615_865_843_651_857_942_052_864i128

Source§

type Num = i128

Source§

impl ExtNumConst for isize

Source§

impl ExtNumConst for u8

Source§

impl ExtNumConst for u16

Source§

impl ExtNumConst for u32

Source§

impl ExtNumConst for u64

Source§

const NUM_ZERO: Option<u64>

Source§

const NUM_ONE: u64 = 1u64

Source§

const NUM_TWO: u64 = 2u64

Source§

const NUM_THREE: u64 = 3u64

Source§

const NUM_NEG_ONE: Option<u64> = None

Source§

const NUM_MIN_POSITIVE: u64 = 1u64

Source§

const NUM_MAX_NEGATIVE: Option<u64> = None

Source§

const NUM_MAX_POWER_OF_TWO: u64 = 9_223_372_036_854_775_808u64

Source§

type Num = u64

Source§

impl ExtNumConst for u128

Source§

const NUM_ZERO: Option<u128>

Source§

const NUM_ONE: u128 = 1u128

Source§

const NUM_TWO: u128 = 2u128

Source§

const NUM_THREE: u128 = 3u128

Source§

const NUM_NEG_ONE: Option<u128> = None

Source§

const NUM_MIN_POSITIVE: u128 = 1u128

Source§

const NUM_MAX_NEGATIVE: Option<u128> = None

Source§

const NUM_MAX_POWER_OF_TWO: u128 = 170_141_183_460_469_231_731_687_303_715_884_105_728u128

Source§

type Num = u128

Source§

impl ExtNumConst for usize

Source§

const NUM_ZERO: Option<usize>

Source§

const NUM_ONE: usize = 1usize

Source§

const NUM_TWO: usize = 2usize

Source§

const NUM_THREE: usize = 3usize

Source§

const NUM_NEG_ONE: Option<usize> = None

Source§

const NUM_MIN_POSITIVE: usize = 1usize

Source§

const NUM_MAX_NEGATIVE: Option<usize> = None

Source§

const NUM_MAX_POWER_OF_TWO: usize = 9_223_372_036_854_775_808usize

Source§

type Num = usize

Implementors§

Source§

impl ExtNumConst for NonZeroI8

Source§

impl ExtNumConst for NonZeroI16

Source§

impl ExtNumConst for NonZeroI32

Source§

impl ExtNumConst for NonZeroI64

Source§

impl ExtNumConst for NonZeroI128

Source§

impl ExtNumConst for NonZeroIsize

Source§

impl ExtNumConst for NonZeroU8

Source§

impl ExtNumConst for NonZeroU16

Source§

impl ExtNumConst for NonZeroU32

Source§

impl ExtNumConst for NonZeroU64

Source§

impl ExtNumConst for NonZeroU128

Source§

impl ExtNumConst for NonZeroUsize