Trait nekolib::math::CrtMod

source ·
pub trait CrtMod {
    type I;

    // Required method
    fn crt_mod(&self, m: Self::I) -> Self::I;
}

Required Associated Types§

source

type I

Required Methods§

source

fn crt_mod(&self, m: Self::I) -> Self::I

Implementations on Foreign Types§

source§

impl CrtMod for [(u128, u128)]

§

type I = u128

source§

fn crt_mod(&self, mu: u128) -> u128

source§

impl CrtMod for [(u64, u64)]

§

type I = u64

source§

fn crt_mod(&self, mu: u64) -> u64

source§

impl CrtMod for [(u8, u8)]

§

type I = u8

source§

fn crt_mod(&self, mu: u8) -> u8

source§

impl CrtMod for [(u32, u32)]

§

type I = u32

source§

fn crt_mod(&self, mu: u32) -> u32

source§

impl CrtMod for [(u16, u16)]

§

type I = u16

source§

fn crt_mod(&self, mu: u16) -> u16

source§

impl CrtMod for [(usize, usize)]

§

type I = usize

source§

fn crt_mod(&self, mu: usize) -> usize

Implementors§