My Blog

My WordPress Blog

Tag: currying


  • Functional Programming- Currying

    Some confusing stuff, but I’m starting to see the potential.   Currying is a technique that lets you define a function taking multiple arguments as a series of functions that take one argument, and returns a function that takes the rest.  You can define it all the way to the last argument. This lets you…