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;