(step-by n it)
  n: an int
  it: an iterable
  returns an iter
F

Skips over another iterator's items by the given interval.

Every time this iterator is advanced, it calls (iter-next! it) a total of n times, discarding all items except the first.

This means that the original iterator's first item is always produced.

deep-cloned
map