eqv method

  1. @override
bool eqv(
  1. T x,
  2. T y
)
override

Returns true if x == y, false otherwise.

Implementation

@override
bool eqv(T x, T y) {
  final c = partialCompare(x, y);
  return c != null && c == 0;
}