strict-num-extended-macros 0.5.0

Type-safe finite floating-point types for Rust - eliminate NaN and infinity at compile time
Documentation
1
2
3
4
5
6
7
8
//! Arithmetic operations module

mod binary_ops;
mod neg_ops;

// Re-export all functions
pub use binary_ops::generate_arithmetic_impls;
pub use neg_ops::generate_neg_impls;