Trait Transform

Source
pub trait Transform<T> {
    // Required method
    fn transform(&mut self, _: &Plan<T>);
}
Expand description

The transform.

Required Methods§

Source

fn transform(&mut self, _: &Plan<T>)

Perform the transform.

Implementations on Foreign Types§

Source§

impl<T> Transform<T> for [T]
where T: Float,

Source§

fn transform(&mut self, plan: &Plan<T>)

Source§

impl<T> Transform<T> for Vec<Complex<T>>
where T: Float,

Source§

fn transform(&mut self, plan: &Plan<T>)

Source§

impl<T> Transform<T> for Vec<T>
where T: Float,

Source§

fn transform(&mut self, plan: &Plan<T>)

Source§

impl<T> Transform<T> for [Complex<T>]
where T: Float,

Source§

fn transform(&mut self, plan: &Plan<T>)

Implementors§