Trait relearn::utils::array::BasicArray [−][src]
pub trait BasicArray<T, const N: usize> {
fn zeros(shape: [usize; N]) -> Self;
fn ones(shape: [usize; N]) -> Self;
fn allocate(shape: [usize; N]) -> (Self, bool)
where
Self: Sized,
{ ... }
}
Expand description
A basic multidimensional array with simple operations.