#[repr(C)]pub struct FactorArray {
pub factors: [u64; 30],
pub len: usize,
}
Expand description
Factorisation of an integer
Representation of the factors in the form p^k p2^k
Fields§
§factors: [u64; 30]
§len: usize
Auto Trait Implementations§
impl Freeze for FactorArray
impl RefUnwindSafe for FactorArray
impl Send for FactorArray
impl Sync for FactorArray
impl Unpin for FactorArray
impl UnwindSafe for FactorArray
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