(chain ..its)
  its: zero or more iterables
  returns an iter
F

Sequences multiple iterators, one after another.

The resulting iterator produces all of the items from its first argument, followed by all of the items from its second argument, and so on.

(let it (chain "abcde" "12" "ABCD"))
(prn ..it) ; prints abcde12ABCD
zip
flatten