[][src]Function arrayfire::selectl

pub fn selectl<T>(a: f64, cond: &Array<bool>, b: &Array<T>) -> Array<T> where
    T: HasAfEnum

Element wise conditional operator for Arrays

This function does the C-equivalent of the following statement, except that the operation happens on a GPU for all elements simultaneously.

c = cond ? a : b; /// where  a is a scalar(f64) and b is Array

Parameters

Return Values

An Array