From: Lars Ingebrigtsen <larsi@gnus.org>
To: Rasmus <rasmus@gmx.us>
Cc: 23736@debbugs.gnu.org
Subject: bug#23736: Add companion to apply-partially
Date: Sun, 28 Jul 2019 14:05:55 +0200 [thread overview]
Message-ID: <87zhkybbz0.fsf@mouse.gnus.org> (raw)
In-Reply-To: <87mvmuzciw.fsf@gmx.us> (rasmus@gmx.us's message of "Thu, 09 Jun 2016 16:01:59 +0200")
Rasmus <rasmus@gmx.us> writes:
> 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))))
(I'm going through old Emacs bug reports that haven't received any
response.)
I think this sounds like a slightly too obscure function to add to Emacs
core. apply-partially is more useful because functions are often
constructed in ways that makes that a convenient function, while the
opposite order is more unusual, I think?
(And especially with lexical support doing this sort of thing is often
easier, anyway.)
So I'm closing this as a "wontfix".
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
next prev parent reply other threads:[~2019-07-28 12:05 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-09 14:01 bug#23736: Add companion to apply-partially Rasmus
2019-07-28 12:05 ` Lars Ingebrigtsen [this message]
2019-07-28 13:59 ` Basil L. Contovounesios
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87zhkybbz0.fsf@mouse.gnus.org \
--to=larsi@gnus.org \
--cc=23736@debbugs.gnu.org \
--cc=rasmus@gmx.us \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.