notEquals<T> function

bool notEquals<T>(
  1. T a,
  2. T b
)

Implementation

bool notEquals<T>(T a, T b) => a != b;