elementwise/
lib.rs

1#[cfg(feature = "ndarray")]
2extern crate ndarray;
3
4#[macro_use]
5pub(crate) mod macros;
6
7#[cfg(feature = "arithmetic")]
8pub mod arithmetic;
9
10#[cfg(feature = "logical")]
11pub mod logical;