take method

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

Returns an ISet of the count first elements of this iterable.

Implementation

@override
Iterable<T> take(int count) => _s.take(count);