Trait nalgebra::Shape [] [src]

pub trait Shape<I>: Index<I> {
    fn shape(&self) -> I;
}

The shape of an indexable object.

Required Methods

fn shape(&self) -> I

Returns the shape of an indexable object.

Implementors