Skip to content

Instantly share code, notes, and snippets.

@Errorific
Last active August 29, 2015 14:01
Show Gist options
  • Save Errorific/896226b2fc7e149c7d25 to your computer and use it in GitHub Desktop.
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
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