pub struct PAdicLog {
pub p: u64,
}Expand description
The p-adic logarithm log_p(x) = -Σ_{n≥1} (1 - x)^n / n, converging for |1 - x|_p < 1.
Fields§
§p: u64The prime p.
Implementations§
Auto Trait Implementations§
impl Freeze for PAdicLog
impl RefUnwindSafe for PAdicLog
impl Send for PAdicLog
impl Sync for PAdicLog
impl Unpin for PAdicLog
impl UnsafeUnpin for PAdicLog
impl UnwindSafe for PAdicLog
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