call method

bool call(
  1. T a,
  2. T b
)

Checks if a != b.

Implementation

bool call(T a, T b) => a != b;