1 2 3 4 5 6 7
pub use self::{add::*, max::*, min::*, multiply::*, power::*}; mod add; mod max; mod min; mod multiply; mod power;