Trait stencil::Manifold [] [src]

pub trait Manifold: NdArray {
    type Coordinate;
    fn dx(&self) -> Self::Coordinate;
fn coordinate_fill<F>(&mut self, _: F)
    where
        F: Fn(Self::Coordinate) -> Self::Elem
;
fn coordinate_map<F>(&mut self, _: F)
    where
        F: Fn(Self::Coordinate, Self::Elem) -> Self::Elem
; }

Uniformly coordinated array

Associated Types

Type of coordinate

Required Methods

Increment of coordinate

Fill manifold by a function

Map values on manifold using a function

Implementors