neqv method

bool neqv(
  1. T x,
  2. T y
)

Returns false if x and y are equivalent, true otherwise.

Implementation

bool neqv(T x, T y) => !eqv(x, y);