Trait Function

Source
pub trait Function<T>: Fn(&T, &Vec<T>) -> Vec<T>
where T: Number,
{ }
Expand description

Function to be solved by this library.

Implementors§

Source§

impl<T, F> Function<T> for F
where T: Number, F: Fn(&T, &Vec<T>) -> Vec<T>,