While studying functional programming, the concept partially applied functions comes up a lot. In Haskell, something like the built-in function take
is considered to be partially applied.
I am still unclear as to what it exactly means for a function to be partially applied or the use/implication of it.
A function by itself can't be "partially applied" or not. It's a meaningless concept.
When you say that a function is "partially applied", you refer to how the function is called (aka "applied"). If the function is called with all its parameters, then it is said to be "fully applied". If some of the parameters are missing, then the function is said to be "partially applied".
For example:
The result of a partial function application is another function - a function that still "expects" to get its missing arguments - like the
take10
in the example above, which still "expects" to receive the list.Of course, it all gets a bit more complicated once you get into the higher-order functions - i.e. functions that take other functions as arguments or return other functions as result. Consider this function:
The function
mkTake
has only one parameter, but it returns another function as result. Now, consider this:On the first line, the function
mkTake
is, obviously, "fully applied", because it is given one argument, which is exactly how many arguments it expects. But the second line is also valid: sincemkTake 10
returns a function, I can then call this function with another parameter. So what does it makemkTake
? "Overly applied", I guess?Then consider the fact that (barring compiler optimizations) all functions are, mathematically speaking, functions of exactly one argument. How could this be? When you declare a function
take n l = ...
, what you're "conceptually" saying istake = \n -> \l -> ...
- that is,take
is a function that takes argumentn
and returns another function that takes argumentl
and returns some result.So the bottom line is that the concept of "partial application" isn't really that strictly defined, it's just a handy shorthand to refer to functions that "ought to" (as in common sense) take N arguments, but are instead given M < N arguments.