Trait stencil::StencilArray [] [src]

pub trait StencilArray<St>: NdArray where
    St: Stencil<Elem = Self::Elem, Dim = Self::Dim>, 
{ fn stencil_map<Output, Func>(&self, out: &mut Output, _: Func)
    where
        Output: NdArray<Dim = Self::Dim>,
        Func: Fn(St) -> Output::Elem
; }

Array with stencil calculations

Required Methods

Execute a stencil calculation

Implementors