pub struct OverconvergentFunctions {
pub p: u64,
pub overconvergence_radius: f64,
}Expand description
Overconvergent p-adic functions: power series converging on a slightly larger disk.
Fields§
§p: u64The prime p.
overconvergence_radius: f64The overconvergence radius r > 1 (radius slightly beyond 1 in |·|_p).
Implementations§
Source§impl OverconvergentFunctions
impl OverconvergentFunctions
Sourcepub fn new(p: u64, overconvergence_radius: f64) -> Self
pub fn new(p: u64, overconvergence_radius: f64) -> Self
Construct the space of overconvergent functions with given radius.
Sourcepub fn is_subspace_of_formal_series(&self) -> bool
pub fn is_subspace_of_formal_series(&self) -> bool
True: overconvergent functions form a subspace of all formal power series.
Sourcepub fn robba_ring_statement(&self) -> String
pub fn robba_ring_statement(&self) -> String
Statement about the Robba ring.
Auto Trait Implementations§
impl Freeze for OverconvergentFunctions
impl RefUnwindSafe for OverconvergentFunctions
impl Send for OverconvergentFunctions
impl Sync for OverconvergentFunctions
impl Unpin for OverconvergentFunctions
impl UnsafeUnpin for OverconvergentFunctions
impl UnwindSafe for OverconvergentFunctions
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