sort

inline fun <T : Comparable<T>> ObservableList<T>.sort()

Sorts the provided observable list, firing change notification once.


infix inline fun <T> ObservableList<T>.sort(c: Comparator<T>)

Sorts the provided observable list using the c comparator, firing change notification once.