Last active
August 29, 2015 14:01
-
-
Save Errorific/896226b2fc7e149c7d25 to your computer and use it in GitHub Desktop.
Introduction to Haskell Chapter IV - A new hope (working title), or we are legion (ok I don't have a title yet), or Voltron
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
So far we have explored data types, pattern matching, and recursive | |
functions in our quest to achieve functional dominance, but singular | |
functions alone are lonely things. If only we could assemble a number | |
of functions together to form a super function... | |
This month we explore methods to compose functions together through | |
currying and partial application treating them as Higher-Order | |
functions and eventually exploring folds. Through this we can reduce | |
the complexity and amount of code we write in common patterns by | |
combining pre-made implementations with application specific code. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment