⚠️ IMPORTANT: Project Elara has switched over to the open-source forge Codeberg. The Project Elara repositories have been moved to this Codeberg page. This GitHub repository is no longer maintained.
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);
}