isSortedByCompare<K> method
Returns true if this collection is sorted by compare of keyOf reactively.
Implementation
Coral<bool> isSortedByCompare<K>(
K Function(E element) keyOf, int Function(K a, K b) compare) =>
coral.map((source) => source.isSortedByCompare<K>(keyOf, compare));