(once-with f)
  f: a callable
  returns an iter
F

Returns an iterator which lazily calls a function.

The iterator always produces exactly one item: the result of calling (f). The function is not actually called until the iterator is advanced.

once
repeat