Trait malachite_base::num::arithmetic::traits::ModShlAssign
source · pub trait ModShlAssign<RHS, M = Self> {
// Required method
fn mod_shl_assign(&mut self, other: RHS, m: M);
}
Expand description
Left-shifts a number (multiplies it by a power of 2) modulo another number $m$, in place. The number must be already reduced modulo $m$.
Required Methods§
fn mod_shl_assign(&mut self, other: RHS, m: M)
Implementations on Foreign Types§
source§impl ModShlAssign<i8> for u8
impl ModShlAssign<i8> for u8
source§fn mod_shl_assign(&mut self, other: i8, m: u8)
fn mod_shl_assign(&mut self, other: i8, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i8> for u16
impl ModShlAssign<i8> for u16
source§fn mod_shl_assign(&mut self, other: i8, m: u16)
fn mod_shl_assign(&mut self, other: i8, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i8> for u32
impl ModShlAssign<i8> for u32
source§fn mod_shl_assign(&mut self, other: i8, m: u32)
fn mod_shl_assign(&mut self, other: i8, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i8> for u64
impl ModShlAssign<i8> for u64
source§fn mod_shl_assign(&mut self, other: i8, m: u64)
fn mod_shl_assign(&mut self, other: i8, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i8> for u128
impl ModShlAssign<i8> for u128
source§fn mod_shl_assign(&mut self, other: i8, m: u128)
fn mod_shl_assign(&mut self, other: i8, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i8> for usize
impl ModShlAssign<i8> for usize
source§fn mod_shl_assign(&mut self, other: i8, m: usize)
fn mod_shl_assign(&mut self, other: i8, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i16> for u8
impl ModShlAssign<i16> for u8
source§fn mod_shl_assign(&mut self, other: i16, m: u8)
fn mod_shl_assign(&mut self, other: i16, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i16> for u16
impl ModShlAssign<i16> for u16
source§fn mod_shl_assign(&mut self, other: i16, m: u16)
fn mod_shl_assign(&mut self, other: i16, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i16> for u32
impl ModShlAssign<i16> for u32
source§fn mod_shl_assign(&mut self, other: i16, m: u32)
fn mod_shl_assign(&mut self, other: i16, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i16> for u64
impl ModShlAssign<i16> for u64
source§fn mod_shl_assign(&mut self, other: i16, m: u64)
fn mod_shl_assign(&mut self, other: i16, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i16> for u128
impl ModShlAssign<i16> for u128
source§fn mod_shl_assign(&mut self, other: i16, m: u128)
fn mod_shl_assign(&mut self, other: i16, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i16> for usize
impl ModShlAssign<i16> for usize
source§fn mod_shl_assign(&mut self, other: i16, m: usize)
fn mod_shl_assign(&mut self, other: i16, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i32> for u8
impl ModShlAssign<i32> for u8
source§fn mod_shl_assign(&mut self, other: i32, m: u8)
fn mod_shl_assign(&mut self, other: i32, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i32> for u16
impl ModShlAssign<i32> for u16
source§fn mod_shl_assign(&mut self, other: i32, m: u16)
fn mod_shl_assign(&mut self, other: i32, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i32> for u32
impl ModShlAssign<i32> for u32
source§fn mod_shl_assign(&mut self, other: i32, m: u32)
fn mod_shl_assign(&mut self, other: i32, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i32> for u64
impl ModShlAssign<i32> for u64
source§fn mod_shl_assign(&mut self, other: i32, m: u64)
fn mod_shl_assign(&mut self, other: i32, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i32> for u128
impl ModShlAssign<i32> for u128
source§fn mod_shl_assign(&mut self, other: i32, m: u128)
fn mod_shl_assign(&mut self, other: i32, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i32> for usize
impl ModShlAssign<i32> for usize
source§fn mod_shl_assign(&mut self, other: i32, m: usize)
fn mod_shl_assign(&mut self, other: i32, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i64> for u8
impl ModShlAssign<i64> for u8
source§fn mod_shl_assign(&mut self, other: i64, m: u8)
fn mod_shl_assign(&mut self, other: i64, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i64> for u16
impl ModShlAssign<i64> for u16
source§fn mod_shl_assign(&mut self, other: i64, m: u16)
fn mod_shl_assign(&mut self, other: i64, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i64> for u32
impl ModShlAssign<i64> for u32
source§fn mod_shl_assign(&mut self, other: i64, m: u32)
fn mod_shl_assign(&mut self, other: i64, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i64> for u64
impl ModShlAssign<i64> for u64
source§fn mod_shl_assign(&mut self, other: i64, m: u64)
fn mod_shl_assign(&mut self, other: i64, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i64> for u128
impl ModShlAssign<i64> for u128
source§fn mod_shl_assign(&mut self, other: i64, m: u128)
fn mod_shl_assign(&mut self, other: i64, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i64> for usize
impl ModShlAssign<i64> for usize
source§fn mod_shl_assign(&mut self, other: i64, m: usize)
fn mod_shl_assign(&mut self, other: i64, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i128> for u8
impl ModShlAssign<i128> for u8
source§fn mod_shl_assign(&mut self, other: i128, m: u8)
fn mod_shl_assign(&mut self, other: i128, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i128> for u16
impl ModShlAssign<i128> for u16
source§fn mod_shl_assign(&mut self, other: i128, m: u16)
fn mod_shl_assign(&mut self, other: i128, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i128> for u32
impl ModShlAssign<i128> for u32
source§fn mod_shl_assign(&mut self, other: i128, m: u32)
fn mod_shl_assign(&mut self, other: i128, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i128> for u64
impl ModShlAssign<i128> for u64
source§fn mod_shl_assign(&mut self, other: i128, m: u64)
fn mod_shl_assign(&mut self, other: i128, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i128> for u128
impl ModShlAssign<i128> for u128
source§fn mod_shl_assign(&mut self, other: i128, m: u128)
fn mod_shl_assign(&mut self, other: i128, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<i128> for usize
impl ModShlAssign<i128> for usize
source§fn mod_shl_assign(&mut self, other: i128, m: usize)
fn mod_shl_assign(&mut self, other: i128, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<isize> for u8
impl ModShlAssign<isize> for u8
source§fn mod_shl_assign(&mut self, other: isize, m: u8)
fn mod_shl_assign(&mut self, other: isize, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<isize> for u16
impl ModShlAssign<isize> for u16
source§fn mod_shl_assign(&mut self, other: isize, m: u16)
fn mod_shl_assign(&mut self, other: isize, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<isize> for u32
impl ModShlAssign<isize> for u32
source§fn mod_shl_assign(&mut self, other: isize, m: u32)
fn mod_shl_assign(&mut self, other: isize, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<isize> for u64
impl ModShlAssign<isize> for u64
source§fn mod_shl_assign(&mut self, other: isize, m: u64)
fn mod_shl_assign(&mut self, other: isize, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<isize> for u128
impl ModShlAssign<isize> for u128
source§fn mod_shl_assign(&mut self, other: isize, m: u128)
fn mod_shl_assign(&mut self, other: isize, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<isize> for usize
impl ModShlAssign<isize> for usize
source§fn mod_shl_assign(&mut self, other: isize, m: usize)
fn mod_shl_assign(&mut self, other: isize, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $\lfloor 2^nx \rfloor \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u8> for u8
impl ModShlAssign<u8> for u8
source§fn mod_shl_assign(&mut self, other: u8, m: u8)
fn mod_shl_assign(&mut self, other: u8, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u8> for u16
impl ModShlAssign<u8> for u16
source§fn mod_shl_assign(&mut self, other: u8, m: u16)
fn mod_shl_assign(&mut self, other: u8, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u8> for u32
impl ModShlAssign<u8> for u32
source§fn mod_shl_assign(&mut self, other: u8, m: u32)
fn mod_shl_assign(&mut self, other: u8, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u8> for u64
impl ModShlAssign<u8> for u64
source§fn mod_shl_assign(&mut self, other: u8, m: u64)
fn mod_shl_assign(&mut self, other: u8, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u8> for u128
impl ModShlAssign<u8> for u128
source§fn mod_shl_assign(&mut self, other: u8, m: u128)
fn mod_shl_assign(&mut self, other: u8, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u8> for usize
impl ModShlAssign<u8> for usize
source§fn mod_shl_assign(&mut self, other: u8, m: usize)
fn mod_shl_assign(&mut self, other: u8, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u16> for u8
impl ModShlAssign<u16> for u8
source§fn mod_shl_assign(&mut self, other: u16, m: u8)
fn mod_shl_assign(&mut self, other: u16, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u16> for u16
impl ModShlAssign<u16> for u16
source§fn mod_shl_assign(&mut self, other: u16, m: u16)
fn mod_shl_assign(&mut self, other: u16, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u16> for u32
impl ModShlAssign<u16> for u32
source§fn mod_shl_assign(&mut self, other: u16, m: u32)
fn mod_shl_assign(&mut self, other: u16, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u16> for u64
impl ModShlAssign<u16> for u64
source§fn mod_shl_assign(&mut self, other: u16, m: u64)
fn mod_shl_assign(&mut self, other: u16, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u16> for u128
impl ModShlAssign<u16> for u128
source§fn mod_shl_assign(&mut self, other: u16, m: u128)
fn mod_shl_assign(&mut self, other: u16, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u16> for usize
impl ModShlAssign<u16> for usize
source§fn mod_shl_assign(&mut self, other: u16, m: usize)
fn mod_shl_assign(&mut self, other: u16, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u32> for u8
impl ModShlAssign<u32> for u8
source§fn mod_shl_assign(&mut self, other: u32, m: u8)
fn mod_shl_assign(&mut self, other: u32, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u32> for u16
impl ModShlAssign<u32> for u16
source§fn mod_shl_assign(&mut self, other: u32, m: u16)
fn mod_shl_assign(&mut self, other: u32, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u32> for u32
impl ModShlAssign<u32> for u32
source§fn mod_shl_assign(&mut self, other: u32, m: u32)
fn mod_shl_assign(&mut self, other: u32, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u32> for u64
impl ModShlAssign<u32> for u64
source§fn mod_shl_assign(&mut self, other: u32, m: u64)
fn mod_shl_assign(&mut self, other: u32, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u32> for u128
impl ModShlAssign<u32> for u128
source§fn mod_shl_assign(&mut self, other: u32, m: u128)
fn mod_shl_assign(&mut self, other: u32, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u32> for usize
impl ModShlAssign<u32> for usize
source§fn mod_shl_assign(&mut self, other: u32, m: usize)
fn mod_shl_assign(&mut self, other: u32, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u64> for u8
impl ModShlAssign<u64> for u8
source§fn mod_shl_assign(&mut self, other: u64, m: u8)
fn mod_shl_assign(&mut self, other: u64, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u64> for u16
impl ModShlAssign<u64> for u16
source§fn mod_shl_assign(&mut self, other: u64, m: u16)
fn mod_shl_assign(&mut self, other: u64, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u64> for u32
impl ModShlAssign<u64> for u32
source§fn mod_shl_assign(&mut self, other: u64, m: u32)
fn mod_shl_assign(&mut self, other: u64, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u64> for u64
impl ModShlAssign<u64> for u64
source§fn mod_shl_assign(&mut self, other: u64, m: u64)
fn mod_shl_assign(&mut self, other: u64, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u64> for u128
impl ModShlAssign<u64> for u128
source§fn mod_shl_assign(&mut self, other: u64, m: u128)
fn mod_shl_assign(&mut self, other: u64, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u64> for usize
impl ModShlAssign<u64> for usize
source§fn mod_shl_assign(&mut self, other: u64, m: usize)
fn mod_shl_assign(&mut self, other: u64, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u128> for u8
impl ModShlAssign<u128> for u8
source§fn mod_shl_assign(&mut self, other: u128, m: u8)
fn mod_shl_assign(&mut self, other: u128, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u128> for u16
impl ModShlAssign<u128> for u16
source§fn mod_shl_assign(&mut self, other: u128, m: u16)
fn mod_shl_assign(&mut self, other: u128, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u128> for u32
impl ModShlAssign<u128> for u32
source§fn mod_shl_assign(&mut self, other: u128, m: u32)
fn mod_shl_assign(&mut self, other: u128, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u128> for u64
impl ModShlAssign<u128> for u64
source§fn mod_shl_assign(&mut self, other: u128, m: u64)
fn mod_shl_assign(&mut self, other: u128, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u128> for u128
impl ModShlAssign<u128> for u128
source§fn mod_shl_assign(&mut self, other: u128, m: u128)
fn mod_shl_assign(&mut self, other: u128, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<u128> for usize
impl ModShlAssign<u128> for usize
source§fn mod_shl_assign(&mut self, other: u128, m: usize)
fn mod_shl_assign(&mut self, other: u128, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<usize> for u8
impl ModShlAssign<usize> for u8
source§fn mod_shl_assign(&mut self, other: usize, m: u8)
fn mod_shl_assign(&mut self, other: usize, m: u8)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<usize> for u16
impl ModShlAssign<usize> for u16
source§fn mod_shl_assign(&mut self, other: usize, m: u16)
fn mod_shl_assign(&mut self, other: usize, m: u16)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<usize> for u32
impl ModShlAssign<usize> for u32
source§fn mod_shl_assign(&mut self, other: usize, m: u32)
fn mod_shl_assign(&mut self, other: usize, m: u32)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<usize> for u64
impl ModShlAssign<usize> for u64
source§fn mod_shl_assign(&mut self, other: usize, m: u64)
fn mod_shl_assign(&mut self, other: usize, m: u64)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<usize> for u128
impl ModShlAssign<usize> for u128
source§fn mod_shl_assign(&mut self, other: usize, m: u128)
fn mod_shl_assign(&mut self, other: usize, m: u128)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.
source§impl ModShlAssign<usize> for usize
impl ModShlAssign<usize> for usize
source§fn mod_shl_assign(&mut self, other: usize, m: usize)
fn mod_shl_assign(&mut self, other: usize, m: usize)
Left-shifts a number (multiplies it by a power of 2) modulo a number $m$, in place. The number must be already reduced modulo $m$.
$x \gets y$, where $x, y < m$ and $2^nx \equiv y \mod m$.
§Worst-case complexity
$T(n) = O(n)$
$M(n) = O(1)$
where $T$ is time, $M$ is additional memory, and $n$ is
other.significant_bits()
.
§Panics
Panics if self
is greater than or equal to m
.
§Examples
See here.