diff --git a/src/matrix/mat.rs b/src/matrix/mat.rs index 284be31..95f0ac7 100644 --- a/src/matrix/mat.rs +++ b/src/matrix/mat.rs @@ -297,11 +297,6 @@ impl_elementwise_op!(Sub, sub, -); impl_elementwise_op!(Mul, mul, *); impl_elementwise_op!(Div, div, /); -pub type FloatMatrix = Matrix; -pub type BoolMatrix = Matrix; -pub type IntMatrix = Matrix; -pub type StringMatrix = Matrix; - /// Generates element-wise bitwise operations for boolean matrices. macro_rules! impl_bitwise_op { ($OpTrait:ident, $method:ident, $op:tt) => { @@ -345,6 +340,10 @@ impl Not for Matrix { } } +pub type FloatMatrix = Matrix; +pub type BoolMatrix = Matrix; +pub type IntMatrix = Matrix; +pub type StringMatrix = Matrix; #[cfg(test)] mod tests {