take method

Iterable<E> take(
  1. int n
)

Implementation

Iterable<E> take(int n) => toIterable()!.take(n) as Iterable<E>;