Comparator<T> typedef
- T a,
- T b
The signature of a generic comparison function.
A comparison function represents an ordering on a type of objects. A total ordering on a type means that for two values, either they are equal or one is greater than the other (and the latter must then be smaller than the former).
A Comparator function represents such a total ordering by returning
- a negative integer if
ais smaller thanb, - zero if
ais equal tob, and - a positive integer if
ais greater thanb.
Implementation
typedef Comparator<T> = int Function(T a, T b);
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-core/Comparator.html