Returns the n smallest elements in ascending order.
n
List<T> bottom(int n) => (toList()..sort()).take(n).toList();