islessgreater<T extends num> function
Implementation
bool islessgreater<T extends num>(T x, T y) =>
!isunordered(x.toDouble(), y.toDouble()) && x != y;
bool islessgreater<T extends num>(T x, T y) =>
!isunordered(x.toDouble(), y.toDouble()) && x != y;