take method

view source

Iterable<E> take (int n) inherited

Implementation

Iterable<E> take(int n) {
  return TakeIterable<E>(this, n);
}