Type Alias RunPtr

Source
pub type RunPtr<V, F = Native<V>> = for<'a> fn(&'a Lut<F>, Cv<'a, V>) -> ValXs<'a, V>;
Expand description

Run function pointer.

Implementation-wise, this would be a perfect spot for for<'a, F: FilterT<V>>; unfortunately, this is not stable yet. That would also allow to eliminate F from FilterT.