pub trait ToLogSpace {
    type Item;

    // Required method
    fn into_log_space(self, step: usize) -> IntoLogSpace<Self::Item>;
}
Expand description

A helper trait for log_space

Required Associated Types§

source

type Item

The item that this is a logarithmic space over

Required Methods§

source

fn into_log_space(self, step: usize) -> IntoLogSpace<Self::Item>

Create the log space

Implementations on Foreign Types§

source§

impl<T: Real + FromPrimitive> ToLogSpace for Range<T>

§

type Item = T

source§

fn into_log_space(self, steps: usize) -> IntoLogSpace<Self::Item>

source§

impl<T: Real + FromPrimitive> ToLogSpace for RangeInclusive<T>

§

type Item = T

source§

fn into_log_space(self, steps: usize) -> IntoLogSpace<Self::Item>

Implementors§