//IEEE754
use crateFp;
/// Half-precision floating-point format, known as binary16, FP16 or float16
pub type FpHalf = ;
/// Single-precision floating-point format, known as binary32, FP32 or float32
pub type FpSingle = ;
/// Double-precision floating-point format, known as binary64, FP64 or float64
pub type FpDouble = ;
/// Quadruple-precision floating-point format, known as binary128, FP128 or float128
pub type FpQuadruple = ;
// /// Octuple-precision floating-point format, known as binary256, FP256 or float256
//pub type FpOctuple = Fp<u256, true, 19, 0, 236, 2>;
/// Decimal single-precision floating-point format, known as decimal32
pub type DecSingle = ;
/// Decimal double-precision floating-point format, known as decimal64
pub type DecDouble = ;
/// Decimal quadruple-precision floating-point format, known as decimal128
pub type DecQuadruple = ;