pub trait ReduceStridesTo<S: Shape, Ax>: Shape + ReduceShapeTo<S, Ax> {
    // Required method
    fn reduced(&self) -> S;
}
Expand description

Internal implementation for reducing a shape

Required Methods§

source

fn reduced(&self) -> S

Implementors§

source§

impl<Src: Shape, Dst: Shape, Ax: Axes> ReduceStridesTo<Dst, Ax> for Srcwhere Self: ReduceShapeTo<Dst, Ax>,