1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
extern crate num_traits;
extern crate num_integer;

#[macro_use]
mod macros;

pub mod vec;
#[cfg(test)]
mod vec_test;

pub mod mat;
#[cfg(test)]
mod mat_test;

pub mod map;
#[cfg(test)]
mod map_test;