map f [x1, x2, ..., xn] == [f x1, f x2, ..., f xn] map f [x1, x2, ...] == [f x1, f x2, ...]
>>> map (+1) [1, 2, 3] [2,3,4]
map id = cat map (g . f) = map f >-> map g
toNonEmpty (map f xs) = map f (toNonEmpty xs)
Streams.map (g . f) === Streams.map f >=> Streams.map g Streams.map id === Streams.makeInputStream . Streams.read
>>> S.stdoutLn $ S.map reverse $ each (words "alpha beta") ahpla ateb