Next: Mapping Functions, Previous: Calling–Invoking Functions, Up: Functions [Index]
Here’s how to do partial application in Emacs Lisp:
Return a function that is a partial application of ‘FUNC’ to ‘ARGS’. ‘ARGS’ is a list of the first N arguments to pass to ‘FUNC’. The result is a new function which does the same as ‘FUNC’, except that the first N arguments are fixed at the values with which this function was called.