compareBool<T> function
Implementation
Comparator<T> compareBool<T>(bool toBool(T input)) {
return (T a, T b) {
bool ba = toBool(a);
bool bb = toBool(b);
if (ba == bb) return 0;
return ba ? 1 : -1;
};
}
Comparator<T> compareBool<T>(bool toBool(T input)) {
return (T a, T b) {
bool ba = toBool(a);
bool bb = toBool(b);
if (ba == bb) return 0;
return ba ? 1 : -1;
};
}