rulinalg/macros/mod.rs
1//! Macros for the linear algebra modules.
2
3#[macro_use]
4mod vector;
5
6#[macro_use]
7mod matrix;
8
9#[macro_use]
10mod matrix_eq;
11
12pub use self::matrix_eq::{
13 elementwise_matrix_comparison,
14 elementwise_vector_comparison,
15 AbsoluteElementwiseComparator,
16 ExactElementwiseComparator,
17 UlpElementwiseComparator,
18 FloatElementwiseComparator,
19
20 // The following are just imported because we want to
21 // expose trait bounds in the documentation
22 ElementwiseComparator
23};