#[repr(C)]pub struct d128 { /* private fields */ }
Expand description
A 128-bit decimal floating point type.
Implementations§
Source§impl d128
impl d128
Sourcepub unsafe fn from_raw_bytes(bytes: [u8; 16]) -> d128
pub unsafe fn from_raw_bytes(bytes: [u8; 16]) -> d128
Creates a d128 from raw bytes. Endianess is host dependent.
Sourcepub fn to_raw_bytes(&self) -> [u8; 16]
pub fn to_raw_bytes(&self) -> [u8; 16]
Returns raw bytes for this d128. Endianess is host dependent.
Sourcepub fn get_status() -> Status
pub fn get_status() -> Status
Returns the thread local status.
Sourcepub fn set_status(status: Status)
pub fn set_status(status: Status)
Sets the thread local status.
Sourcepub fn from_hex(s: &str) -> d128
pub fn from_hex(s: &str) -> d128
Reads the hex binary representation from a string. This is the reverse of formatting with {:x}.
Sourcepub fn neg_infinity() -> d128
pub fn neg_infinity() -> d128
Returns the d128 representing -Infinity.
Sourcepub fn mul_add<O: AsRef<d128>>(self, a: O, b: O) -> d128
pub fn mul_add<O: AsRef<d128>>(self, a: O, b: O) -> d128
Calculates the fused multiply-add self
× a
+ b
and returns the result. The multiply
is carried out first and is exact, so this operation has only the one, final, rounding.
Sourcepub fn logb(self) -> d128
pub fn logb(self) -> d128
Returns the adjusted exponent of self
, according to IEEE 754 rules. That is, the exponent
returned is calculated as if the decimal point followed the first significant digit (so,
for example, if self
were 123 then the result would be 2). If self
is infinite, the
result is +Infinity. If self
is a zero, the result is –Infinity, and the
DIVISION_BY_ZERO
flag is set. If self
is less than zero, the absolute value of self
is used. If self
is 1, the result is 0. NaNs are handled (propagated) as for arithmetic
operations.
Sourcepub fn max<O: AsRef<d128>>(self, other: O) -> d128
pub fn max<O: AsRef<d128>>(self, other: O) -> d128
If both self
and other
are numeric (not NaNs) this returns the larger of the two
(compared using total ordering, to give a well-defined result). If either (but not both of)
is a quiet NaN then the other argument is the result; otherwise NaNs are handled as for
arithmetic operations.
Sourcepub fn min<O: AsRef<d128>>(self, other: O) -> d128
pub fn min<O: AsRef<d128>>(self, other: O) -> d128
If both self
and other
are numeric (not NaNs) this returns the smaller of the two
(compared using total ordering, to give a well-defined result). If either (but not both of)
is a quiet NaN then the other argument is the result; otherwise NaNs are handled as for
arithmetic operations.
Sourcepub fn next(self) -> d128
pub fn next(self) -> d128
Returns the ‘next’ d128 to self
in the direction of +Infinity according to IEEE 754 rules
for nextUp. The only status possible is INVALID_OPERATION
(from an sNaN).
Sourcepub fn previous(self) -> d128
pub fn previous(self) -> d128
Returns the ‘next’ d128 to self
in the direction of –Infinity according to IEEE 754 rules
for nextDown. The only status possible is INVALID_OPERATION
(from an sNaN).
Sourcepub fn pow<O: AsRef<d128>>(self, exp: O) -> d128
pub fn pow<O: AsRef<d128>>(self, exp: O) -> d128
The number is set to the result of raising self
to the power of exp
. Results will be
exact when exp
has an integral value and the result does not need to be rounded, and also
will be exact in certain special cases, such as when self
is a zero (see the arithmetic
specification for details). Inexact results will always be full precision, and will almost
always be correctly rounded, but may be up to 1 ulp (unit in last place) in error in rare
cases. This is a mathematical function; the 106 restrictions on precision and
range apply as described above, except that the normal range of values is allowed if exp
has an integral value in the range –1999999997 through +999999999.
Sourcepub fn exp<O: AsRef<d128>>(self, exp: O) -> d128
pub fn exp<O: AsRef<d128>>(self, exp: O) -> d128
The number is set to e raised to the power of exp
. Finite results will always be full
precision and inexact, except when exp
is a zero or –Infinity (giving 1 or 0
respectively). Inexact results will almost always be correctly rounded, but may be up to 1
ulp (unit in last place) in error in rare cases. This is a mathematical function; the
106 restrictions on precision and range apply as described above.
Sourcepub fn ln(self) -> d128
pub fn ln(self) -> d128
The number is set to the natural logarithm (logarithm in base e) of self
. self
must be
positive or a zero. Finite results will always be full precision and inexact, except when
self
is equal to 1, which gives an exact result of 0. Inexact results will almost always
be correctly rounded, but may be up to 1 ulp (unit in last place) in error in rare cases.
This is a mathematical function; the 106 restrictions on precision and range
apply as described above.
Sourcepub fn log10(self) -> d128
pub fn log10(self) -> d128
The number is set to the logarithm in base ten of self
. self
must be positive or a
zero. Finite results will always be full precision and inexact, except when self
is equal
to an integral power of ten, in which case the result is the exact integer. Inexact results
will almost always be correctly rounded, but may be up to 1 ulp (unit in last place) in
error in rare cases. This is a mathematical function; the 106 restrictions on
precision and range apply as described above.
Sourcepub fn towards<O: AsRef<d128>>(self, other: O) -> d128
pub fn towards<O: AsRef<d128>>(self, other: O) -> d128
Returns the ‘next’ d128 to self
in the direction of other
according to proposed IEEE
754 rules for nextAfter. If self
== other
the result is self
. If either operand is
a NaN the result is as for arithmetic operations. Otherwise (the operands are numeric and
different) the result of adding (or subtracting) an infinitesimal positive amount to self
and rounding towards +Infinity (or –Infinity) is returned, depending on whether other
is
larger (or smaller) than self
. The addition will set flags, except that if the result is
normal (finite, non-zero, and not subnormal) no flags are set.
Sourcepub fn quantize<O: AsRef<d128>>(self, other: O) -> d128
pub fn quantize<O: AsRef<d128>>(self, other: O) -> d128
Returns self
set to have the same quantum as other
, if possible (that is, numerically
the same value but rounded or padded if necessary to have the same exponent as other
, for
example to round a monetary quantity to cents).
Sourcepub fn reduce(self) -> d128
pub fn reduce(self) -> d128
Returns a copy of self
with its coefficient reduced to its shortest possible form without
changing the value of the result. This removes all possible trailing zeros from the
coefficient (some may remain when the number is very close to the most positive or most
negative number). Infinities and NaNs are unchanged and no status is set unless self
is
an sNaN. If self
is a zero the result exponent is 0.
Sourcepub fn rotate<O: AsRef<d128>>(self, amount: O) -> d128
pub fn rotate<O: AsRef<d128>>(self, amount: O) -> d128
The result is a copy of self
with the digits of the coefficient rotated to the left (if
amount
is positive) or to the right (if amount
is negative) without adjusting the
exponent or the sign of self
. amount
is the count of positions to rotate and must be a
finite integer (with exponent=0) in the range -34 through +34. NaNs are propagated as
usual. If self
is infinite the result is Infinity of the same sign. No status is set
unless amount
is invalid or an operand is an sNaN.
Sourcepub fn scaleb<O: AsRef<d128>>(self, other: O) -> d128
pub fn scaleb<O: AsRef<d128>>(self, other: O) -> d128
This calculates self
× 10other
and returns the result. other
must be an
integer (finite with exponent=0) in the range ±2 × (34 + 6144), typically resulting from
logb
. Underflow and overflow might occur. NaNs propagate as usual.
Sourcepub fn compare<O: AsRef<d128>>(&self, other: O) -> d128
pub fn compare<O: AsRef<d128>>(&self, other: O) -> d128
Compares self
and other
numerically and returns the result. The result may be –1, 0, 1,
or NaN (unordered); –1 indicates that self
is less than other
, 0 indicates that they
are numerically equal, and 1 indicates that self
is greater than other
. NaN is returned
only if self
or other
is a NaN.
Sourcepub fn compare_total<O: AsRef<d128>>(&self, other: O) -> d128
pub fn compare_total<O: AsRef<d128>>(&self, other: O) -> d128
Compares self
and other
using the IEEE 754 total ordering (which takes into account the
exponent) and returns the result. No status is set (a signaling NaN is ordered between
Infinity and NaN). The result will be –1, 0, or 1.
Sourcepub fn classify(&self) -> FpCategory
pub fn classify(&self) -> FpCategory
Same as class()
but returns std::num::FpCategory
.
Sourcepub fn digits(&self) -> u32
pub fn digits(&self) -> u32
Returns the number of significant digits in self
. If self
is a zero or is infinite, 1
is returned. If self
is a NaN then the number of digits in the payload is returned.
Sourcepub fn is_canonical(&self) -> bool
pub fn is_canonical(&self) -> bool
Returns true
if the encoding of self
is canonical, or false
otherwise.
Sourcepub fn is_finite(&self) -> bool
pub fn is_finite(&self) -> bool
Returns true
if self
is neither infinite nor a NaN, or false
otherwise.
Sourcepub fn is_integer(&self) -> bool
pub fn is_integer(&self) -> bool
Returns true
if self
is finite and its exponent is zero, or false
otherwise.
Sourcepub fn is_logical(&self) -> bool
pub fn is_logical(&self) -> bool
Returns true
if self
is a valid argument for logical operations (that is, self
is
zero or positive, an integer (finite with a zero exponent) and comprises only zeros and/or
ones), or false
otherwise.
Sourcepub fn is_infinite(&self) -> bool
pub fn is_infinite(&self) -> bool
Returns true
if the encoding of self
is an infinity, or false
otherwise.
Sourcepub fn is_nan(&self) -> bool
pub fn is_nan(&self) -> bool
Returns true
if self
is a NaN (quiet or signaling), or false
otherwise.
Sourcepub fn is_negative(&self) -> bool
pub fn is_negative(&self) -> bool
Returns true
if self
is less than zero and not a NaN, or false
otherwise.
Sourcepub fn is_normal(&self) -> bool
pub fn is_normal(&self) -> bool
Returns true
if self
is a normal number (that is, is finite, non-zero, and not
subnormal), or false
otherwise.
Sourcepub fn is_positive(&self) -> bool
pub fn is_positive(&self) -> bool
Returns true
if self
is greater than zero and not a NaN, or false
otherwise.
Sourcepub fn is_signaling(&self) -> bool
pub fn is_signaling(&self) -> bool
Returns true
if self
is a signaling NaN, or false
otherwise.
Sourcepub fn is_signed(&self) -> bool
pub fn is_signed(&self) -> bool
Returns true
if self
has a minus sign, or false
otherwise. Note that zeros and NaNs
may have a minus sign.
Sourcepub fn is_subnormal(&self) -> bool
pub fn is_subnormal(&self) -> bool
Returns true
if self
is subnormal (that is, finite, non-zero, and with magnitude less
than 10-6143), or false
otherwise.
Trait Implementations§
Source§impl AddAssign for d128
impl AddAssign for d128
Source§fn add_assign(&mut self, other: d128)
fn add_assign(&mut self, other: d128)
+=
operation. Read moreSource§impl BitAnd for d128
The operands must be zero or positive, an integer (finite with zero exponent) and comprise
only zeros and/or ones; if not, INVALID_OPERATION is set.
impl BitAnd for d128
The operands must be zero or positive, an integer (finite with zero exponent) and comprise only zeros and/or ones; if not, INVALID_OPERATION is set.
Source§impl BitAndAssign for d128
impl BitAndAssign for d128
Source§fn bitand_assign(&mut self, other: d128)
fn bitand_assign(&mut self, other: d128)
&=
operation. Read moreSource§impl BitOr for d128
The operands must be zero or positive, an integer (finite with zero exponent) and comprise
only zeros and/or ones; if not, INVALID_OPERATION is set.
impl BitOr for d128
The operands must be zero or positive, an integer (finite with zero exponent) and comprise only zeros and/or ones; if not, INVALID_OPERATION is set.
Source§impl BitOrAssign for d128
impl BitOrAssign for d128
Source§fn bitor_assign(&mut self, other: d128)
fn bitor_assign(&mut self, other: d128)
|=
operation. Read moreSource§impl BitXor for d128
The operands must be zero or positive, an integer (finite with zero exponent) and comprise
only zeros and/or ones; if not, INVALID_OPERATION is set.
impl BitXor for d128
The operands must be zero or positive, an integer (finite with zero exponent) and comprise only zeros and/or ones; if not, INVALID_OPERATION is set.
Source§impl BitXorAssign for d128
impl BitXorAssign for d128
Source§fn bitxor_assign(&mut self, other: d128)
fn bitxor_assign(&mut self, other: d128)
^=
operation. Read moreSource§impl<'de> Deserialize<'de> for d128
impl<'de> Deserialize<'de> for d128
Source§fn deserialize<D>(deserializer: D) -> Result<d128, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<d128, D::Error>where
D: Deserializer<'de>,
Source§impl Display for d128
Formats a d128. Finite numbers will be converted to a string with exponential notation if the
exponent is positive or if the magnitude of x is less than 1 and would require more than five
zeros between the decimal point and the first significant digit. Note that strings which are
not simply numbers (one of Infinity, –Infinity, NaN, or sNaN) are possible. A NaN string may
have a leading – sign and/or following payload digits. No digits follow the NaN string if the
payload is 0.
impl Display for d128
Formats a d128. Finite numbers will be converted to a string with exponential notation if the exponent is positive or if the magnitude of x is less than 1 and would require more than five zeros between the decimal point and the first significant digit. Note that strings which are not simply numbers (one of Infinity, –Infinity, NaN, or sNaN) are possible. A NaN string may have a leading – sign and/or following payload digits. No digits follow the NaN string if the payload is 0.
Source§impl DivAssign for d128
impl DivAssign for d128
Source§fn div_assign(&mut self, other: d128)
fn div_assign(&mut self, other: d128)
/=
operation. Read moreSource§impl From<i32> for d128
Converts an i32 to d128. The result is exact and no error is possible.
impl From<i32> for d128
Converts an i32 to d128. The result is exact and no error is possible.
Source§impl From<i64> for d128
Converts an i64 to d128. The result is exact and no error is possible.
impl From<i64> for d128
Converts an i64 to d128. The result is exact and no error is possible.
Source§impl From<u32> for d128
Converts an u32 to d128. The result is exact and no error is possible.
impl From<u32> for d128
Converts an u32 to d128. The result is exact and no error is possible.
Source§impl From<u64> for d128
Converts an u64 to d128. The result is exact and no error is possible.
impl From<u64> for d128
Converts an u64 to d128. The result is exact and no error is possible.
Source§impl FromStr for d128
Converts a string to d128. The length of the coefficient and the size of the exponent are
checked by this routine, so rounding will be applied if necessary, and this may set status
flags (UNDERFLOW
, OVERFLOW
) will be reported, or rounding applied, as necessary. There is
no limit to the coefficient length for finite inputs; NaN payloads must be integers with no
more than 33 digits. Exponents may have up to nine significant digits. The syntax of the string
is fully checked; if it is not valid, the result will be a quiet NaN and an error flag will be
set.
impl FromStr for d128
Converts a string to d128. The length of the coefficient and the size of the exponent are
checked by this routine, so rounding will be applied if necessary, and this may set status
flags (UNDERFLOW
, OVERFLOW
) will be reported, or rounding applied, as necessary. There is
no limit to the coefficient length for finite inputs; NaN payloads must be integers with no
more than 33 digits. Exponents may have up to nine significant digits. The syntax of the string
is fully checked; if it is not valid, the result will be a quiet NaN and an error flag will be
set.
Source§impl LowerExp for d128
Formats a d128 with engineering notation. This is the same as fmt::Display except that if
exponential notation is used the exponent will be a multiple of 3.
impl LowerExp for d128
Formats a d128 with engineering notation. This is the same as fmt::Display except that if exponential notation is used the exponent will be a multiple of 3.
Source§impl MulAssign for d128
impl MulAssign for d128
Source§fn mul_assign(&mut self, other: d128)
fn mul_assign(&mut self, other: d128)
*=
operation. Read moreSource§impl Not for d128
The operand must be zero or positive, an integer (finite with zero exponent) and comprise
only zeros and/or ones; if not, INVALID_OPERATION is set.
impl Not for d128
The operand must be zero or positive, an integer (finite with zero exponent) and comprise only zeros and/or ones; if not, INVALID_OPERATION is set.
Source§impl PartialOrd for d128
impl PartialOrd for d128
Source§impl RemAssign for d128
impl RemAssign for d128
Source§fn rem_assign(&mut self, other: d128)
fn rem_assign(&mut self, other: d128)
%=
operation. Read moreSource§impl Shl<usize> for d128
The result is self
with the digits of the coefficient shifted to the left without adjusting
the exponent or the sign of self
. Any digits ‘shifted in’ from the right will be 0. amount
is the count of positions to shift and must be a in the range –34 through +34. NaNs are
propagated as usual. If self
is infinite the result is Infinity of the same sign. No status
is set unless amount
is invalid or self
is an sNaN.
impl Shl<usize> for d128
The result is self
with the digits of the coefficient shifted to the left without adjusting
the exponent or the sign of self
. Any digits ‘shifted in’ from the right will be 0. amount
is the count of positions to shift and must be a in the range –34 through +34. NaNs are
propagated as usual. If self
is infinite the result is Infinity of the same sign. No status
is set unless amount
is invalid or self
is an sNaN.
Source§impl ShlAssign<usize> for d128
impl ShlAssign<usize> for d128
Source§fn shl_assign(&mut self, amount: usize)
fn shl_assign(&mut self, amount: usize)
<<=
operation. Read moreSource§impl Shr<usize> for d128
The result is self
with the digits of the coefficient shifted to the right without adjusting
the exponent or the sign of self
. Any digits ‘shifted in’ from the left will be 0. amount
is the count of positions to shift and must be a in the range –34 through +34. NaNs are
propagated as usual. If self
is infinite the result is Infinity of the same sign. No status
is set unless amount
is invalid or self
is an sNaN.
impl Shr<usize> for d128
The result is self
with the digits of the coefficient shifted to the right without adjusting
the exponent or the sign of self
. Any digits ‘shifted in’ from the left will be 0. amount
is the count of positions to shift and must be a in the range –34 through +34. NaNs are
propagated as usual. If self
is infinite the result is Infinity of the same sign. No status
is set unless amount
is invalid or self
is an sNaN.
Source§impl ShrAssign<usize> for d128
impl ShrAssign<usize> for d128
Source§fn shr_assign(&mut self, amount: usize)
fn shr_assign(&mut self, amount: usize)
>>=
operation. Read moreSource§impl SubAssign for d128
impl SubAssign for d128
Source§fn sub_assign(&mut self, other: d128)
fn sub_assign(&mut self, other: d128)
-=
operation. Read moreSource§impl<T> Sum<T> for d128
impl<T> Sum<T> for d128
Source§fn sum<I: IntoIterator<Item = T>>(iter: I) -> d128
fn sum<I: IntoIterator<Item = T>>(iter: I) -> d128
Self
from the elements by “summing up”
the items.