pub trait ShapeArg {
type Dim: Dimension;
// Required method
fn into_shape_and_order(self) -> (Self::Dim, Option<Order>);
}
Expand description
Re-export everything from ndarray crate Array shape argument with optional order parameter
Shape or array dimension argument, with optional Order
parameter.
This is an argument conversion trait that is used to accept an array shape and (optionally) an ordering argument.
See for example .to_shape()
.