From: Daniel Colascione <dancol@dancol.org>
To: Burton Samograd <burton@samograd.ca>
Cc: emacs-devel@gnu.org
Subject: Re: RFC: rough draft of Python-style generators for elisp
Date: Tue, 27 Nov 2012 15:26:34 -0600 [thread overview]
Message-ID: <50B5300A.4060600@dancol.org> (raw)
In-Reply-To: <kghr4nfrrji.fsf@CDW764-BURTONS.QFTI.COM>
[-- Attachment #1: Type: text/plain, Size: 1469 bytes --]
On 11/27/12 9:31 AM, Burton Samograd wrote:
> Daniel Colascione <dancol@dancol.org> writes:
>
>> Over at https://github.com/dcolascione/elisp-generators, I have a
>> pure-elisp implementation of Python-style generators for elisp.
>> Perhaps the feature is best illustrate by example:
>>
>> (defgenerator mygen (i)
>> (yield 1)
>> (yield i)
>> (yield 3))
>>
>> (let ((gen (mygen 100)))
>> (list (funcall gen)
>> (funcall gen)
>> (funcall gen)))
>>
>> -> (1 100 3)
>>
>> Yields can appear in arbitrary code:
>>
>> (defgenerator mygen2 (lim)
>> (loop for x from 0 to lim do (yield x)))
>>
>> The package works by rewriting elisp into continuation-passing form
>> and closing over the resulting continuations with a driver loop that
>> transitions from one continuation-state to the next. After the last
>> yield, the facility signals generator-ended.
>>
>> Please take a look. It'd be nice if there were cl-loop extensions to
>> iterate over the things, and if generators were available with regular
>> defun the way yield is available with regular "def" in Python.
>
> When I try and byte-compile your package I get the following:
Thanks for trying the package. I've updated it to use pcase, and I
fixed the compilation issues by side effect. A few warnings about
unused lexical variables remain, but I'm convinced these warnings are
spurious.
Please let me know if you have any other problems.
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 235 bytes --]
next prev parent reply other threads:[~2012-11-27 21:26 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-27 3:16 RFC: rough draft of Python-style generators for elisp Daniel Colascione
2012-11-27 15:31 ` Burton Samograd
2012-11-27 21:24 ` Daniel Colascione
2012-11-27 21:26 ` Daniel Colascione [this message]
2012-11-29 8:41 ` Levin Du
2012-11-29 18:49 ` Daniel Colascione
2012-11-29 19:47 ` Stefan Monnier
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50B5300A.4060600@dancol.org \
--to=dancol@dancol.org \
--cc=burton@samograd.ca \
--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 public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).