Returns the n largest elements in descending order.
n
List<T> top(int n) => (toList()..sort()).reversed.take(n).toList();