I am still a haskell beginner. Can I do a double map in haskell?
For example, if I have a [[Char]] and I want to convert each Char in each [Char] to lower case, is there an easy way to do this rather than something like:
exampleF [] = []
exampleF (x:xs) = (map toLower x) : exampleF xs