1 2 3 4 5 6 7
pub(crate) mod vec; pub(crate) mod vec_2d; use crate::math::{TensorList, TensorTuple}; /// A list of tensor tuples. pub type TensorTupleList<T1, T2, const N: usize> = TensorList<TensorTuple<T1, T2>, N>;