Skip to main content

not_equal

Function not_equal 

Source
pub fn not_equal<T>(a: &Array<T>, b: &Array<T>) -> Result<Array<bool>>
where T: Clone + PartialEq + Debug,
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