take method

  1. @override
Iterable<E> take(
  1. int count
)
override

Returns a lazy iterable of the count first elements of this iterable.

Implementation

@override
Iterable<E> take(int count) => _wrappedList.take(count);