From ... Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.esat.net!nslave.kpnqwest.net!nloc.kpnqwest.net!nmaster.kpnqwest.net!nreader1.kpnqwest.net.POSTED!not-for-mail Newsgroups: comp.lang.lisp Subject: Re: Recursive Anonymous Lambda Was: (lambda ()) vs #'(lambda ()) References: Mail-Copies-To: never From: Erik Naggum Message-ID: <3219426877120035@naggum.net> Organization: Naggum Software, Oslo, Norway Lines: 12 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 07 Jan 2002 21:14:38 GMT X-Complaints-To: newsmaster@KPNQwest.no X-Trace: nreader1.kpnqwest.net 1010438078 193.71.66.49 (Mon, 07 Jan 2002 22:14:38 MET) NNTP-Posting-Date: Mon, 07 Jan 2002 22:14:38 MET Xref: archiver1.google.com comp.lang.lisp:23819 * "Michael J. Ferrador" | Has anyone ever thought it would be nice to recurse an anonymous lambda? (defun jestcall (function &rest arg) (apply function function args)) Where you would funcall a function that would funcall itself by name to make a recursive call, you jestcall a function that jestcalls its first argument to make a recursive call. /// --