Hacker News new | ask | show | jobs
by dragonwriter 4103 days ago
Partial application isn't currying; partially applying a function f to a first argument x is equivalent to currying f, applying the resulting unary function to x, and uncurrying the function that results from that application.

So, partial application can be defined in terms of currying, application, and uncurrying, but its not the same as currying.