(nth n it)
  n: an int
  it: an iterable
  returns any type
F

Returns an iterator's nth item.

Invokes (iter-next! it) a total of n times, discarding every result except the last.

This means that if the iterator produces fewer than n items, the result will be #n.

count
nth-back