Trait crypto_bigint::Integer[][src]

pub trait Integer: 'static + AsRef<[Limb]> + for<'a> CheckedAdd<&'a Self, Output = Self> + for<'a> CheckedSub<&'a Self, Output = Self> + for<'a> CheckedMul<&'a Self, Output = Self> + Copy + ConditionallySelectable + ConstantTimeEq + ConstantTimeGreater + ConstantTimeLess + Debug + Default + Div<NonZero<Self>, Output = Self> + Eq + From<u64> + Ord + Rem<NonZero<Self>, Output = Self> + Send + Sized + Sync + Zero {
    const ONE: Self;
    const MAX: Self;

    fn is_odd(&self) -> Choice;

    fn is_even(&self) -> Choice { ... }
}
Expand description

Integer type.

Associated Constants

The value 1.

Maximum value this integer can express.

Required methods

Is this integer value an odd number?

Returns

If odd, returns Choice(1). Otherwise, returns Choice(0).

Provided methods

Is this integer value an even number?

Returns

If even, returns Choice(1). Otherwise, returns Choice(0).

Implementors