take method

  1. @override
RIterator<T> take(
  1. int count
)
override

Takes the first count elements from the RIterator.

Implementation

@override
RIterator<T> take(int count) => RIterator.fromIterable(super.take(count));