Function not_equal
Source pub fn not_equal<T>(a: &Array<T>, b: &Array<T>) -> Result<Array<bool>>
Expand description
Create a boolean array with element-wise comparison (a != b)
§Arguments
a - First array
b - Second array
§Returns
A boolean array with elements set to true where a != b