GNU bug report logs -
#49316
Add apply-partially's right version
Previous Next
Reported by: daanturo <daanturo <at> gmail.com>
Date: Thu, 1 Jul 2021 12:41:02 UTC
Severity: normal
Tags: patch, wontfix
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #40 received at 49316 <at> debbugs.gnu.org (full text, mbox):
That's cool! Can you submit the patch?
On 7/3/21 10:06 AM, Michael Heerdegen wrote:
> A placeholder (e.g. the symbol `_' which should normally be unbound)
> stands for an argument that is used from the args provided in the actual
> call:
>
> #+begin_src emacs-lisp
> (defmacro applying-partially (call)
> (let ((args (make-symbol "args")))
> `(lambda (&rest ,args)
> (apply #',(car call)
> ,@(mapcar (lambda (arg)
> (if (eq arg '_)
> `(pop ,args)
> arg))
> (cdr call))
> ,args))))
>
> (defalias 'minus-10 (applying-partially (- _ 10)))
>
> (minus-10 120) ;; ==> 110
>
> (defalias 'my-list-with-some-elts
> (applying-partially (list 0 _ 2 _ 4)))
>
> (my-list-with-some-elts 'a 'b 'c 'd) ; => (0 a 2 b 4 c d)
>
> (symbol-function 'my-list-with-some-elts)
> ;; => (closure (t) (&rest args)
> ;; (apply #'list 0 (pop args) 2 (pop args) 4 args))
> #+end_src
>
> --
> Daanturo.
This bug report was last modified 3 years and 211 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.