pub struct Hyperreal {
pub standard: f64,
pub infinitesimal_part: f64,
pub infinite_part: f64,
}Expand description
A hyperreal number with a standard part, an infinitesimal part, and an infinite part.
Fields§
§standard: f64§infinitesimal_part: f64§infinite_part: f64Implementations§
Source§impl Hyperreal
impl Hyperreal
Auto Trait Implementations§
impl Freeze for Hyperreal
impl RefUnwindSafe for Hyperreal
impl Send for Hyperreal
impl Sync for Hyperreal
impl Unpin for Hyperreal
impl UnsafeUnpin for Hyperreal
impl UnwindSafe for Hyperreal
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