1 2 3 4 5 6
pub mod vec; pub mod vec_2d; use crate::math::{TensorList, TensorTuple}; pub type TensorTupleList<T1, T2, const N: usize> = TensorList<TensorTuple<T1, T2>, N>;