(take n it)
  n: an int
  it: an iterable
  returns an iter
F

Limits another iterator to a fixed number of items.

Produces each item from the original iterator, finishing as soon as n items have been produced.

cycle
take-while