pub struct ByLeastPrimeFactors { /* private fields */ }Expand description
least prime factors による素因数分解
Implementations§
Source§impl ByLeastPrimeFactors
impl ByLeastPrimeFactors
Sourcepub fn new(n: usize) -> Self
pub fn new(n: usize) -> Self
素因数分解の前計算として least prime factors を求めます。
Trait Implementations§
Source§impl Clone for ByLeastPrimeFactors
impl Clone for ByLeastPrimeFactors
Source§fn clone(&self) -> ByLeastPrimeFactors
fn clone(&self) -> ByLeastPrimeFactors
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ByLeastPrimeFactors
impl Debug for ByLeastPrimeFactors
Auto Trait Implementations§
impl Freeze for ByLeastPrimeFactors
impl RefUnwindSafe for ByLeastPrimeFactors
impl Send for ByLeastPrimeFactors
impl Sync for ByLeastPrimeFactors
impl Unpin for ByLeastPrimeFactors
impl UnsafeUnpin for ByLeastPrimeFactors
impl UnwindSafe for ByLeastPrimeFactors
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more