pub trait Evaluable<N> { // Required method fn eval(&self, point: N) -> N; }
Evaluates self at point, and returns the result.
self
point