pub trait ArangeArgs<D: Type>: Debug {
// Required method
fn stop(&self) -> D::Repr;
// Provided methods
fn start(&self) -> D::Repr { ... }
fn step(&self) -> D::Repr { ... }
fn size(&self) -> usize { ... }
}
Expand description
Represents the arguments for the arange
function.