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