lexical_util/
f16.rs

1//! Half-precision IEEE-754 floating point implementation.
2//!
3//! f16 is meant as an interchange format, and therefore there may be
4//! rounding error in using it for fast-path algorithms. Since there
5//! are no native operations using `f16`, this is of minimal concern.
6
7#![cfg(feature = "f16")]
8
9pub use float16::f16;