Created
November 7, 2015 21:55
-
-
Save skatenerd/767e2042f388bde63779 to your computer and use it in GitHub Desktop.
eta reduce
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- inspired by | |
-- http://stackoverflow.com/a/23660388/1096146 | |
--nestedMap f elements = map (\inner -> map f inner) elements | |
--nestedMap f elements = map (map f) elements | |
--nestedMap f = map (map f) | |
--nestedMap f = (map . map) f | |
--nestedMap = (map . map) | |
nestedMap = map . map |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment