machina-softfloat 0.1.2

Pure software IEEE 754 floating-point library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: MIT
// machina-softfloat: Pure software IEEE 754 floating-point library.

#![no_std]

pub mod env;
pub mod ops;
pub mod parts;
pub mod types;

pub use env::{ExcFlags, FloatEnv, RoundMode, Tininess};
pub use parts::{FloatClass, FloatParts};
pub use types::{
    BFloat16, BitOps, Float128, Float16, Float32, Float64, FloatFormat,
    FloatX80,
};