pub trait ToArange<S> {
    type Item;

    // Required method
    fn into_arange(self, step: S) -> IntoArange<Self::Item>;
}
Expand description

Helper trait for arange

Required Associated Types§

source

type Item

The item that this is a arange space over

Required Methods§

source

fn into_arange(self, step: S) -> IntoArange<Self::Item>

Create the arange space

Implementations on Foreign Types§

source§

impl<F: Real> ToArange<F> for Range<F>

§

type Item = F

source§

fn into_arange(self, step: F) -> IntoArange<Self::Item>

Implementors§