GNU bug report logs -
#23736
Add companion to apply-partially
Previous Next
Reported by: Rasmus <rasmus <at> gmx.us>
Date: Thu, 9 Jun 2016 14:03:01 UTC
Severity: wishlist
Tags: wontfix
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #15 received at 23736 <at> debbugs.gnu.org (full text, mbox):
Lars Ingebrigtsen <larsi <at> gnus.org> writes:
> Rasmus <rasmus <at> 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?
Indeed I think partial application from the right is not as generally
useful in languages with variadic functions. IME it is often replaced
with shorthand for closures or currying from the right.
In the case of Elisp there is also the issue that apply-partially is
both a little verbose and (currently) significantly less efficient than
an open-coded closure.
--
Basil
This bug report was last modified 5 years and 358 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.