Docs.rs
machina-softfloat-0.1.2
machina-softfloat 0.1.2
Docs.rs crate page
MIT
06 July 2026
Links
crates.io
Source
Owners
zevorn
Dependencies
Versions
8.17%
of the crate is documented
Platform
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
Module misc
machina_
softfloat
0.1.2
Module misc
Module Items
Functions
In machina_
softfloat::
ops
machina_softfloat
::
ops
Module
misc
Copy item path
Source
Functions
ยง
abs
Absolute value: clear the sign bit.
classify
IEEE 754 classification.
is_
quiet_
nan
Check if the value is a quiet NaN.
is_
signaling_
nan
Check if the value is a signaling NaN.
is_
subnormal
Check if the value is subnormal (unpacks to Normal with biased_exp == 0 in the original encoding, but our unpack normalizes subnormals; detect via original exponent range).
neg
Negate: flip the sign bit.
scalbn
Scale by power of 2: a * 2^n. Does not raise INEXACT (unlike multiplication by 2^n).