Function: -partial

-partial is a function alias for apply-partially, defined in subr.el.gz.

Signature

(-partial FUN &rest ARGS)

Documentation

Return a function that is a partial application of FUN to ARGS.

ARGS is a list of the first N arguments to pass to FUN. The result is a new function which does the same as FUN, except that the first N arguments are fixed at the values with which this function was called.

View in manual

Aliases

-partial