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 $ span $ toHtml "foo"Result:
<map><span>foo</span></map>
toNonEmpty (map f xs) = map f (toNonEmpty xs)
>>> HashSet.map show (HashSet.fromList [1,2,3]) HashSet.fromList ["1","2","3"]