nyarray/
lib.rs

1#![doc = include_str!("../readme.md")]
2
3#![no_std]
4
5#[cfg(feature = "std")]
6extern crate std;
7
8pub mod array;
9pub mod switch;
10