[][src]Trait bigdecimal::One

pub trait One: Mul<Self, Output = Self> {
    fn one() -> Self;

    default fn is_one(&self) -> bool
    where
        Self: PartialEq<Self>
, { ... } }

Defines a multiplicative identity element for Self.

Required methods

fn one() -> Self

Returns the multiplicative identity element of Self, 1.

Laws

a * 1 = a       ∀ a ∈ Self
1 * a = a       ∀ a ∈ Self

Purity

This function should return the same result at all times regardless of external mutable state, for example values stored in TLS or in static muts.

Loading content...

Provided methods

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 

Returns true if self is equal to the multiplicative identity.

For performance reasons, it's best to implement this manually. After a semver bump, this method will be required, and the where Self: PartialEq bound will be removed.

Loading content...

Implementations on Foreign Types

impl One for BigInt[src]

impl One for BigUint[src]

impl<T> One for Wrapping<T> where
    T: One,
    Wrapping<T>: Mul<Wrapping<T>>,
    <Wrapping<T> as Mul<Wrapping<T>>>::Output == Wrapping<T>, 
[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for usize[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for i8[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for i32[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for isize[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for u16[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for u128[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for f32[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for i16[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for i128[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for u32[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for u8[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for f64[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for u64[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

impl One for i64[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

Loading content...

Implementors

impl One for BigDecimal[src]

default fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

Loading content...