Struct nekolib_doc::math::modint::StaticModInt

source ·
pub struct StaticModInt<const MOD: u32>(/* private fields */);

Implementations§

source§

impl<const MOD: u32> StaticModInt<MOD>

source

pub fn new(val: impl RemEuclidU32) -> StaticModInt<MOD>

source

pub fn modulus() -> u32

source§

impl<const MOD: u32> StaticModInt<MOD>

source

pub fn recip(self) -> StaticModInt<MOD>

source

pub fn checked_recip(self) -> Option<StaticModInt<MOD>>

source

pub fn pow(self, exp: impl BinIter) -> StaticModInt<MOD>

Trait Implementations§

source§

impl<const MOD: u32> Add<&StaticModInt<MOD>> for &StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the + operator.
source§

fn add( self, rhs: &StaticModInt<MOD>, ) -> <&StaticModInt<MOD> as Add<&StaticModInt<MOD>>>::Output

Performs the + operation. Read more
source§

impl<const MOD: u32> Add<&StaticModInt<MOD>> for StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the + operator.
source§

fn add( self, rhs: &StaticModInt<MOD>, ) -> <StaticModInt<MOD> as Add<&StaticModInt<MOD>>>::Output

Performs the + operation. Read more
source§

impl<const MOD: u32> Add<StaticModInt<MOD>> for &StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the + operator.
source§

fn add( self, rhs: StaticModInt<MOD>, ) -> <&StaticModInt<MOD> as Add<StaticModInt<MOD>>>::Output

Performs the + operation. Read more
source§

impl<const MOD: u32> Add for StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the + operator.
source§

fn add(self, rhs: StaticModInt<MOD>) -> <StaticModInt<MOD> as Add>::Output

Performs the + operation. Read more
source§

impl<const MOD: u32> AddAssign<&StaticModInt<MOD>> for StaticModInt<MOD>

source§

fn add_assign(&mut self, rhs: &StaticModInt<MOD>)

Performs the += operation. Read more
source§

impl<const MOD: u32> AddAssign for StaticModInt<MOD>

source§

fn add_assign(&mut self, rhs: StaticModInt<MOD>)

Performs the += operation. Read more
source§

impl<const MOD: u32> Clone for StaticModInt<MOD>

source§

fn clone(&self) -> StaticModInt<MOD>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<const MOD: u32> Debug for StaticModInt<MOD>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<const MOD: u32> Display for StaticModInt<MOD>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<const MOD: u32> Div<&StaticModInt<MOD>> for &StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the / operator.
source§

fn div( self, rhs: &StaticModInt<MOD>, ) -> <&StaticModInt<MOD> as Div<&StaticModInt<MOD>>>::Output

Performs the / operation. Read more
source§

impl<const MOD: u32> Div<&StaticModInt<MOD>> for StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the / operator.
source§

fn div( self, rhs: &StaticModInt<MOD>, ) -> <StaticModInt<MOD> as Div<&StaticModInt<MOD>>>::Output

Performs the / operation. Read more
source§

impl<const MOD: u32> Div<StaticModInt<MOD>> for &StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the / operator.
source§

fn div( self, rhs: StaticModInt<MOD>, ) -> <&StaticModInt<MOD> as Div<StaticModInt<MOD>>>::Output

Performs the / operation. Read more
source§

impl<const MOD: u32> Div for StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the / operator.
source§

fn div(self, rhs: StaticModInt<MOD>) -> <StaticModInt<MOD> as Div>::Output

Performs the / operation. Read more
source§

impl<const MOD: u32> DivAssign<&StaticModInt<MOD>> for StaticModInt<MOD>

source§

fn div_assign(&mut self, rhs: &StaticModInt<MOD>)

Performs the /= operation. Read more
source§

impl<const MOD: u32> DivAssign for StaticModInt<MOD>

source§

fn div_assign(&mut self, rhs: StaticModInt<MOD>)

Performs the /= operation. Read more
source§

impl<const MOD: u32, I> From<I> for StaticModInt<MOD>
where I: RemEuclidU32,

source§

fn from(val: I) -> StaticModInt<MOD>

Converts to this type from the input type.
source§

impl<const MOD: u32> Hash for StaticModInt<MOD>

source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<const MOD: u32> Mul<&StaticModInt<MOD>> for &StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the * operator.
source§

fn mul( self, rhs: &StaticModInt<MOD>, ) -> <&StaticModInt<MOD> as Mul<&StaticModInt<MOD>>>::Output

Performs the * operation. Read more
source§

impl<const MOD: u32> Mul<&StaticModInt<MOD>> for StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the * operator.
source§

fn mul( self, rhs: &StaticModInt<MOD>, ) -> <StaticModInt<MOD> as Mul<&StaticModInt<MOD>>>::Output

Performs the * operation. Read more
source§

impl<const MOD: u32> Mul<StaticModInt<MOD>> for &StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the * operator.
source§

fn mul( self, rhs: StaticModInt<MOD>, ) -> <&StaticModInt<MOD> as Mul<StaticModInt<MOD>>>::Output

Performs the * operation. Read more
source§

impl<const MOD: u32> Mul for StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: StaticModInt<MOD>) -> <StaticModInt<MOD> as Mul>::Output

Performs the * operation. Read more
source§

impl<const MOD: u32> MulAssign<&StaticModInt<MOD>> for StaticModInt<MOD>

source§

fn mul_assign(&mut self, rhs: &StaticModInt<MOD>)

Performs the *= operation. Read more
source§

impl<const MOD: u32> MulAssign for StaticModInt<MOD>

source§

fn mul_assign(&mut self, rhs: StaticModInt<MOD>)

Performs the *= operation. Read more
source§

impl<const MOD: u32> Neg for &StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the - operator.
source§

fn neg(self) -> <&StaticModInt<MOD> as Neg>::Output

Performs the unary - operation. Read more
source§

impl<const MOD: u32> Neg for StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the - operator.
source§

fn neg(self) -> <StaticModInt<MOD> as Neg>::Output

Performs the unary - operation. Read more
source§

impl<const MOD: u32> PartialEq for StaticModInt<MOD>

source§

fn eq(&self, other: &StaticModInt<MOD>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, const MOD: u32> Product<&'a StaticModInt<MOD>> for StaticModInt<MOD>

source§

fn product<I>(iter: I) -> StaticModInt<MOD>
where I: Iterator<Item = &'a StaticModInt<MOD>>,

Takes an iterator and generates Self from the elements by multiplying the items.
source§

impl<const MOD: u32> Product for StaticModInt<MOD>

source§

fn product<I>(iter: I) -> StaticModInt<MOD>
where I: Iterator<Item = StaticModInt<MOD>>,

Takes an iterator and generates Self from the elements by multiplying the items.
source§

impl<const MOD: u32> Sub<&StaticModInt<MOD>> for &StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the - operator.
source§

fn sub( self, rhs: &StaticModInt<MOD>, ) -> <&StaticModInt<MOD> as Sub<&StaticModInt<MOD>>>::Output

Performs the - operation. Read more
source§

impl<const MOD: u32> Sub<&StaticModInt<MOD>> for StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the - operator.
source§

fn sub( self, rhs: &StaticModInt<MOD>, ) -> <StaticModInt<MOD> as Sub<&StaticModInt<MOD>>>::Output

Performs the - operation. Read more
source§

impl<const MOD: u32> Sub<StaticModInt<MOD>> for &StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the - operator.
source§

fn sub( self, rhs: StaticModInt<MOD>, ) -> <&StaticModInt<MOD> as Sub<StaticModInt<MOD>>>::Output

Performs the - operation. Read more
source§

impl<const MOD: u32> Sub for StaticModInt<MOD>

source§

type Output = StaticModInt<MOD>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: StaticModInt<MOD>) -> <StaticModInt<MOD> as Sub>::Output

Performs the - operation. Read more
source§

impl<const MOD: u32> SubAssign<&StaticModInt<MOD>> for StaticModInt<MOD>

source§

fn sub_assign(&mut self, rhs: &StaticModInt<MOD>)

Performs the -= operation. Read more
source§

impl<const MOD: u32> SubAssign for StaticModInt<MOD>

source§

fn sub_assign(&mut self, rhs: StaticModInt<MOD>)

Performs the -= operation. Read more
source§

impl<'a, const MOD: u32> Sum<&'a StaticModInt<MOD>> for StaticModInt<MOD>

source§

fn sum<I>(iter: I) -> StaticModInt<MOD>
where I: Iterator<Item = &'a StaticModInt<MOD>>,

Takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl<const MOD: u32> Sum for StaticModInt<MOD>

source§

fn sum<I>(iter: I) -> StaticModInt<MOD>
where I: Iterator<Item = StaticModInt<MOD>>,

Takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl<const MOD: u32> Copy for StaticModInt<MOD>

source§

impl<const MOD: u32> Eq for StaticModInt<MOD>

source§

impl<const MOD: u32> StructuralPartialEq for StaticModInt<MOD>

Auto Trait Implementations§

§

impl<const MOD: u32> Freeze for StaticModInt<MOD>

§

impl<const MOD: u32> RefUnwindSafe for StaticModInt<MOD>

§

impl<const MOD: u32> Send for StaticModInt<MOD>

§

impl<const MOD: u32> Sync for StaticModInt<MOD>

§

impl<const MOD: u32> Unpin for StaticModInt<MOD>

§

impl<const MOD: u32> UnwindSafe for StaticModInt<MOD>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CycleMuLambda for T
where T: Eq,

source§

fn cycle_mu_lambda<F>(self, f: F) -> (usize, usize)
where F: Fn(&T) -> T,

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V