Struct cranelift_codegen::ir::immediates::Ieee64 [−][src]
pub struct Ieee64(_);
An IEEE binary64 immediate floating point value, represented as a u64 containing the bit pattern.
All bit patterns are allowed.
Methods
impl Ieee64[src]
impl Ieee64pub fn with_bits(x: u64) -> Self[src]
pub fn with_bits(x: u64) -> SelfCreate a new Ieee64 containing the bits of x.
pub fn pow2<I: Into<i64>>(n: I) -> Self[src]
pub fn pow2<I: Into<i64>>(n: I) -> SelfCreate an Ieee64 number representing 2.0^n.
pub fn fcvt_to_sint_negative_overflow<I: Into<i64>>(n: I) -> Self[src]
pub fn fcvt_to_sint_negative_overflow<I: Into<i64>>(n: I) -> SelfCreate an Ieee64 number representing the greatest negative value
not convertable from f64 to a signed integer with width n.
pub fn neg(self) -> Self[src]
pub fn neg(self) -> SelfReturn self negated.
pub fn with_float(x: f64) -> Self[src]
pub fn with_float(x: f64) -> SelfCreate a new Ieee64 representing the number x.
pub fn bits(self) -> u64[src]
pub fn bits(self) -> u64Get the bitwise representation.
Trait Implementations
impl Copy for Ieee64[src]
impl Copy for Ieee64impl Clone for Ieee64[src]
impl Clone for Ieee64fn clone(&self) -> Ieee64[src]
fn clone(&self) -> Ieee64Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Debug for Ieee64[src]
impl Debug for Ieee64fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for Ieee64[src]
impl Eq for Ieee64impl PartialEq for Ieee64[src]
impl PartialEq for Ieee64fn eq(&self, other: &Ieee64) -> bool[src]
fn eq(&self, other: &Ieee64) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Ieee64) -> bool[src]
fn ne(&self, other: &Ieee64) -> boolThis method tests for !=.
impl Hash for Ieee64[src]
impl Hash for Ieee64fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Display for Ieee64[src]
impl Display for Ieee64fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl FromStr for Ieee64[src]
impl FromStr for Ieee64