BinaryFn

Trait BinaryFn 

Source
pub trait BinaryFn<T: Elem>: Fn(&[T], &[T], &mut [T]) -> Result<(), &'static str> { }
Expand description

(2xN)-to-(1xN) elementwise array operation.

Implementors§

Source§

impl<T: Elem, K: Fn(&[T], &[T], &mut [T]) -> Result<(), &'static str>> BinaryFn<T> for K