(map f it)
  f: a callable
  it: an iterable
  returns an iter
F

Calls a function for each of another iterator's items.

Returns an iterator which produces (f (iter-next! it)).

step-by
filter