unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#23736: Add companion to apply-partially
@ 2016-06-09 14:01 Rasmus
  2019-07-28 12:05 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 3+ messages in thread
From: Rasmus @ 2016-06-09 14:01 UTC (permalink / raw)
  To: 23736

Hi,

Could we add an ‘apply-rpartially’ or ‘apply-partially-last’ to subr.el?
Like ‘apply-partially’, but fixing the last arguments.  This is useful for
e.g. ‘set-face-attribute’ where one might a common :inherits to many
faces, e.g.

    (mapc (apply-rpartially ’set-face-attribute :inherit ’fixed-pitch) ’(list of faces))

I have used this in my init.el,

    (defun apply-rpartially (fun &rest args)
      "Return a function that is a partial application of FUN to ARGS.
    ARGS is a list of the last N arguments to pass to FUN.  The
    result is a new function which does the same as FUN, except that
    the last N arguments are fixed at the values with which this
    function was called."
      (lambda (&rest args1)
        (apply fun (append args1 args))))

If that’s good I can prepare a patch that also has documentation.  (I
couldn’t find past discussions about such a function)

Rasmus

-- 
Don't slow down Johnny, leave the Cadillac runnin'






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-07-28 13:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-09 14:01 bug#23736: Add companion to apply-partially Rasmus
2019-07-28 12:05 ` Lars Ingebrigtsen
2019-07-28 13:59   ` Basil L. Contovounesios

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).