all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Artur Malabarba <bruce.connor.am@gmail.com>
To: David Kastrup <dak@gnu.org>
Cc: emacs-devel <emacs-devel@gnu.org>
Subject: Re: What's up with apply-partially?
Date: Sat, 24 Jan 2015 01:53:36 -0200	[thread overview]
Message-ID: <CAAdUY-KA5Chx0n4+ZxGG6e30Hx2iHc2sdghLcZh9UV5vHzz3XA@mail.gmail.com> (raw)
In-Reply-To: <874mrh5emp.fsf@fencepost.gnu.org>

> So why not just
>
> (defun apply-partially (fun &rest args)
>   (lambda (&rest args2) (apply fun (append args args2))))
>
> Where is the point in the complicated redefinition that returns a
> basically uncompiled function?  Why not just take Eli's definition and
> simplify it in line with lexical-binding now being set?

As Leo mentioned, the current definition creates the argument list
when `apply-partially' is first called, whereas your suggestion has to
call `append' everytime the returned function is called.

I think that's the only reason. It's unclear to me how that
performance difference compares with the disadvantage of the returned
function not being compiled.



      parent reply	other threads:[~2015-01-24  3:53 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-23 22:14 What's up with apply-partially? David Kastrup
2015-01-24  3:05 ` Leo Liu
2015-01-24  5:01   ` Stefan Monnier
2015-01-24  8:54     ` David Kastrup
2015-01-25 14:32       ` Stefan Monnier
2015-01-25 19:45         ` [PATCH] Let apply-partially make use of lexical binding in subr.el David Kastrup
2015-01-27 16:12           ` David Kastrup
2015-01-29 15:01             ` Stefan Monnier
2015-01-29 15:17               ` David Kastrup
2015-02-05 17:55                 ` David Kastrup
2015-01-24  3:53 ` Artur Malabarba [this message]

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=CAAdUY-KA5Chx0n4+ZxGG6e30Hx2iHc2sdghLcZh9UV5vHzz3XA@mail.gmail.com \
    --to=bruce.connor.am@gmail.com \
    --cc=dak@gnu.org \
    --cc=emacs-devel@gnu.org \
    /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.