This crate provides a fast, n-dimensional array for Project Elara with minimal dependencies. Note: this crate was once part of elara-math
, but has been extracted into a standalone crate for separate development.
use elara_array::prelude::*;
fn main() {
let a = arr![[1.0, 2.0], [3.0, 4.0]];
println!("{:?}", a);
}