pub struct FactorialEngine { /* private fields */ }Expand description
A high-performance engine for computing the prime factorization of factorials. It uses Legendre’s Formula to avoid calculating large numbers, ensuring speed and zero overflow errors.
Implementations§
Auto Trait Implementations§
impl Freeze for FactorialEngine
impl RefUnwindSafe for FactorialEngine
impl Send for FactorialEngine
impl Sync for FactorialEngine
impl Unpin for FactorialEngine
impl UnwindSafe for FactorialEngine
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