pub struct PAdicExponential {
pub p: u64,
}Expand description
The p-adic exponential series exp_p(x) = ∑_{n≥0} x^n / n!.
Fields§
§p: u64The prime p.
Implementations§
Source§impl PAdicExponential
impl PAdicExponential
Sourcepub fn radius_of_convergence(&self) -> f64
pub fn radius_of_convergence(&self) -> f64
Radius of convergence of exp_p: p^{-1/(p-1)} for odd p; 1/4 for p=2.
Auto Trait Implementations§
impl Freeze for PAdicExponential
impl RefUnwindSafe for PAdicExponential
impl Send for PAdicExponential
impl Sync for PAdicExponential
impl Unpin for PAdicExponential
impl UnsafeUnpin for PAdicExponential
impl UnwindSafe for PAdicExponential
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