Created
March 2, 2019 06:16
-
-
Save gvolpe/70477686b08c46ee4ea9ff191fbfb653 to your computer and use it in GitHub Desktop.
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
flip' :: (a -> b -> c) -> b -> a -> c | |
flip' f b a = f a b | |
andThen :: (a -> b) -> (b -> c) -> a -> c | |
andThen = flip' (.) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment