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
// SPDX-License-Identifier: MIT
// Floating-point operation modules.

pub mod add;
pub mod compare;
pub mod convert;
pub mod div;
pub mod fma;
pub mod minmax;
pub mod misc;
pub mod mul;
pub mod round;
pub mod sqrt;