Returns an iterable with at most count elements.
count
This is a non-mutating operation that returns an iterable.
@override Iterable<E> take(int count) => value.take(count);