unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: Panicz Maciej Godek <godek.maciek@gmail.com>
To: Ralf Mattes <rm@seid-online.de>
Cc: "guile-user@gnu.org" <guile-user@gnu.org>,
	Dmitry Bogatov <KAction@gnu.org>, David Pirotte <david@altosw.be>
Subject: Re: Define in let
Date: Wed, 21 Aug 2013 12:17:43 +0200	[thread overview]
Message-ID: <CAMFYt2b9D1z___sqNnDbOT8OuhVz3K+qP8+0fqTE27UznQ=BXA@mail.gmail.com> (raw)
In-Reply-To: <20130821092851.GA16017@seid-online.de>

[-- Attachment #1: Type: text/plain, Size: 2172 bytes --]

2013/8/21 Ralf Mattes <rm@seid-online.de>

> On Wed, Aug 21, 2013 at 08:52:02AM +0200, Panicz Maciej Godek wrote:
> > 2013/8/20 David Pirotte <david@altosw.be>
> >
> > > Hello,
> > >
> > > > It seems following is invalid:
> > > >
> > > >    (let ((a 2))
> > > >         (define (foo x) (+ a x)))
> > > >
> > > > I prefer to reduce scope of variable as much as possible, so
> > > > I find this restriction unconvinent. Is is part of standard or
> technical
> > > > limitation? Is it any workaround?
> > >
> >
> > The Scheme's idiomatic way to achieve the effect that you
> > probably want would be
> > (define foo #f)
> > (let ((a 2))
> >   (set! foo (lambda (x) (+ a x))))
>
> I'd say this is extremly contorted and non-schemish.
> What's wrong with:
>
>   (define foo
>          (let ((a 2))
>            (lambda (arg) (+ a arg))))
>
> This is the basic let-over-lambda closure ....
>
>
You're right, but it only works if you want to export only one symbol
from a lexical scope. If you wanted a few procedures accessing
a single scope, you'd either need to use the solution with 'set!',
or -- as Taylan suggested -- have a "define-values" form.

Actually, I think should also be possible to write a "define-values"
macro using the method I presented

(define-macro (define-values symbols . body)
  (let ((value-identifiers (map gensym (map symbol->string symbols))))
    `(begin
       ,@(map (lambda(x)`(define ,x #f)) symbols)
       (let-values ((,value-identifiers ,@body))
         ,@(map (lambda(symbol value)`(set! ,symbol ,value))
                symbols
                value-identifiers)))))

So we can say that guile already has that ;]
I don't know however how to write this using define-syntax, the
idea is to transform
(define-values (symbol1 symbol2 ...) body ...)
into
(begin
  (define symbol1 #f)
  (define symbol2 #f)
  ...
  (let-values (((value1 value2 ...) (begin body ...))
    (set! symbol1 value1)
    (set! symbol2 value2)
    ...)

but somehow we need to generate identifiers for symbol1 symbol2 ...
(here I wrote symbolically value1 value2 ..., but I'd appreciate if someone
more competent could provide a syntax-rules-based solution)

regards

[-- Attachment #2: Type: text/html, Size: 3368 bytes --]

  reply	other threads:[~2013-08-21 10:17 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-20 16:39 Define in let Dmitry Bogatov
2013-08-20 16:57 ` Thompson, David
2013-08-20 17:02 ` Taylan Ulrich B.
2013-08-20 17:18 ` John B. Brodie
2013-08-20 17:19 ` Ian Price
2013-08-20 17:52 ` Mike Gran
2013-08-20 21:01 ` David Pirotte
2013-08-21  6:52   ` Panicz Maciej Godek
2013-08-21  6:55     ` Panicz Maciej Godek
2013-08-21  9:28     ` Ralf Mattes
2013-08-21 10:17       ` Panicz Maciej Godek [this message]
2013-08-21 10:32         ` Ralf Mattes
2013-08-21 11:01           ` Panicz Maciej Godek
2013-08-21 15:42   ` Dmitry Bogatov

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/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAMFYt2b9D1z___sqNnDbOT8OuhVz3K+qP8+0fqTE27UznQ=BXA@mail.gmail.com' \
    --to=godek.maciek@gmail.com \
    --cc=KAction@gnu.org \
    --cc=david@altosw.be \
    --cc=guile-user@gnu.org \
    --cc=rm@seid-online.de \
    /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.
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).