map -package:base -is:exact -is:exact -package:text -package:blaze-html -package:unordered-containers -package:containers is:exact -package:base-compat -package:utility-ht -package:regex-tdfa package:io-streams

Maps a pure function over an InputStream. map f s passes all output from s through the function f. Satisfies the following laws:
Streams.map (g . f) === Streams.map f >=> Streams.map g
Streams.map id === Streams.makeInputStream . Streams.read