pub trait AllocateZeros {
    fn zeros<T: CountElements>() -> Box<T>;
}
Expand description

Allocate an Nd array on the heap.

Required Methods

Allocate T directly on the heap.

Implementors