pub trait SliceFn {
// Required method
fn slice(&self, start: usize, stop: usize) -> Result<Array, VortexError>;
}
Expand description
Limit array to start…stop range
pub trait SliceFn {
// Required method
fn slice(&self, start: usize, stop: usize) -> Result<Array, VortexError>;
}
Limit array to start…stop range