12 lines
233 B
Rust
12 lines
233 B
Rust
#![feature(core_intrinsics)]
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
pub mod compound;
|
|
pub mod dim;
|
|
pub mod mat;
|
|
pub mod real;
|
|
pub mod step;
|
|
pub mod vec;
|
|
// private because `vec` re-exports to important vecu constructs
|
|
mod vecu;
|