pub trait StrategyND<D>: Debug + DynClone{
// Required methods
fn interpolate(
&self,
data: &InterpDataND<D>,
point: &[D::Elem],
) -> Result<D::Elem, InterpolateError>;
fn allow_extrapolate(&self) -> bool;
}Required Methods§
fn interpolate( &self, data: &InterpDataND<D>, point: &[D::Elem], ) -> Result<D::Elem, InterpolateError>
Sourcefn allow_extrapolate(&self) -> bool
fn allow_extrapolate(&self) -> bool
Does this type’s StrategyND::interpolate provision for extrapolation?
Trait Implementations§
Source§impl<D> StrategyND<D> for Box<dyn StrategyND<D>>
impl<D> StrategyND<D> for Box<dyn StrategyND<D>>
fn interpolate( &self, data: &InterpDataND<D>, point: &[D::Elem], ) -> Result<D::Elem, InterpolateError>
Source§fn allow_extrapolate(&self) -> bool
fn allow_extrapolate(&self) -> bool
Does this type’s
StrategyND::interpolate provision for extrapolation?