brine-fp 0.3.0

192-bit fixed-point math library with logarithmic and exponential functions. Designed for blockchain, scientific, and financial applications.
Documentation
#![cfg_attr(not(feature = "std"), no_std)]

// clippy suppressions
#![allow(clippy::assign_op_pattern)]
#![allow(clippy::ptr_offset_with_cast)]
#![allow(clippy::manual_range_contains)]
#![allow(clippy::reversed_empty_ranges)]

#[cfg(not(feature = "std"))]
extern crate alloc;

use uint::construct_uint;

construct_uint! {
    pub struct InnerUint(3);
}

pub mod consts;
pub mod unsigned;
pub mod signed;
mod exp;
mod log;

pub use consts::*;
pub use unsigned::*;
pub use signed::*;