Struct lexical_util::extended_float::ExtendedFloat

source ·
pub struct ExtendedFloat<M: UnsignedInteger> {
    pub mant: M,
    pub exp: i32,
}
Expand description

Extended precision floating-point type.

This doesn’t have any methods because it’s used for very different things for the Lemire, Bellepheron, and other algorithms. In Grisu, it’s an unbiased representation, for Lemire, it’s a biased representation.

Fields§

§mant: M

Mantissa for the extended-precision float.

§exp: i32

Binary exponent for the extended-precision float.

Implementations§

source§

impl<M: UnsignedInteger> ExtendedFloat<M>

source

pub fn mantissa(&self) -> M

Get the mantissa component.

source

pub fn exponent(&self) -> i32

Get the exponent component.

Trait Implementations§

source§

impl<M: Clone + UnsignedInteger> Clone for ExtendedFloat<M>

source§

fn clone(&self) -> ExtendedFloat<M>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<M: Debug + UnsignedInteger> Debug for ExtendedFloat<M>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<M: PartialEq + UnsignedInteger> PartialEq for ExtendedFloat<M>

source§

fn eq(&self, other: &ExtendedFloat<M>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<M: Copy + UnsignedInteger> Copy for ExtendedFloat<M>

source§

impl<M: Eq + UnsignedInteger> Eq for ExtendedFloat<M>

source§

impl<M: UnsignedInteger> StructuralPartialEq for ExtendedFloat<M>

Auto Trait Implementations§

§

impl<M> Freeze for ExtendedFloat<M>
where M: Freeze,

§

impl<M> RefUnwindSafe for ExtendedFloat<M>
where M: RefUnwindSafe,

§

impl<M> Send for ExtendedFloat<M>

§

impl<M> Sync for ExtendedFloat<M>

§

impl<M> Unpin for ExtendedFloat<M>
where M: Unpin,

§

impl<M> UnwindSafe for ExtendedFloat<M>
where M: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.