take method
Takes the first count
elements from the Iter.
Implementation
@override
@pragma("vm:prefer-inline")
Iter<T> take(int count) => Iter.fromIterable(super.take(count));
Takes the first count
elements from the Iter.
@override
@pragma("vm:prefer-inline")
Iter<T> take(int count) => Iter.fromIterable(super.take(count));