unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: "Linus Björnstam" <linus.internet@fastmail.se>
To: "Jean Abou Samra" <jean@abou-samra.fr>,
	"Damien Mattei" <damien.mattei@gmail.com>
Cc: "Guile User" <guile-user@gnu.org>
Subject: Re: macro definition for continue and break
Date: Mon, 12 Sep 2022 21:19:42 +0200	[thread overview]
Message-ID: <e160ebd0-aa5d-42ce-bed8-26204b712836@www.fastmail.com> (raw)
In-Reply-To: <a56824fb-291f-ca3f-7f92-b17817c8a333@abou-samra.fr>

If you want a bit more advanced looping you could have a look at my goof-loop: https://git.sr.ht/~bjoli/goof-loop

It currently does not support a break or continue clause, but adding one should not really be a problem.

A good thing is that it does not rely on mutation for anything except higher order sequences, meaning it does not lead to the implicit boxing overhead of set!, which is a good idea in loops since that quickly adds up.

Best regards 
  Linus Björnstam

On Sun, 4 Sep 2022, at 13:13, Jean Abou Samra wrote:
> Hi,
>
> Adding back the list in CC.
>
>
> Le 04/09/2022 à 12:49, Damien Mattei a écrit :
>> hello jean,
>> yes (thank you for your help) i'm a sorcerer's apprentice that always 
>> push to later the understanding of literals in syntax-rules, but by 
>> instinct i finally succeed in making works the weird thing :-) , here 
>> is my macro definition now for a for with break and continue:
>>
>> (define-syntax for
>>
>>   (lambda (stx)
>>     (syntax-case stx ()
>>       ((kwd (init test incrmt) body ...)
>>
>>        (with-syntax
>>         ((BREAK (datum->syntax #'kwd 'break))
>>          (CONTINUE (datum->syntax #'kwd 'continue)))
>>
>>        #`(call/cc
>>             (lambda (escape)
>>                 (let-syntax
>>                      ((BREAK (identifier-syntax (escape))))
>>                   init
>>                  (let loop ()
>>                         (when test
>>
>>                            #,#'(call/cc
>>                                     (lambda (next)
>>                                        (let-syntax
>>                                             ((CONTINUE 
>> (identifier-syntax (next))))
>>                                            body ...)))
>>
>>                                     incrmt
>>                                     (loop)))))))))))
>>
>> note the mysterious #,#' that save the day ;-)
>
>
> For me, it works without it… ?
>
>
>> and a few examples (in Scheme+)
>>
>> ;; scheme@(guile-user)> (for ({i <+ 0} {i < 5} {i <- {i + 1}}) {x <+ 
>> 7} (display x) (newline) (break))
>> ;; 7
>> ;; scheme@(guile-user)> (for ({i <+ 0} {i < 5} {i <- {i + 1}}) {x <+ 
>> 7} (continue) (display x) (newline) (break))
>> ;; scheme@(guile-user)>
>>
>> ;; (for ({k <+ 0} {k < 3} {k <- {k + 1}})
>> ;;      (display k)
>> ;;      (newline)
>> ;;      (for ({i <+ 0} {i < 5} {i <- {i + 1}}) {x <+ 7}
>> ;;            (display x)
>> ;;            (newline)
>> ;;            (break))
>> ;;      (newline))
>>
>> ;; 0
>> ;; 7
>>
>> ;; 1
>> ;; 7
>>
>> ;; 2
>> ;; 7
>>
>> ;; (for ({k <+ 0} {k < 3} {k <- {k + 1}})
>> ;;      (display k)
>> ;;      (newline)
>> ;;      (continue)
>> ;;      (for ({i <+ 0} {i < 5} {i <- {i + 1}}) {x <+ 7}
>> ;;         (display x)
>> ;;         (newline)
>> ;;         (break))
>> ;;     (newline))
>>
>> ;; 0
>> ;; 1
>> ;; 2
>>
>> https://github.com/damien-mattei/library-FunctProg/blob/master/for-next-step.scm
>>
>> it also works with imbricated loops in a natural way (but other 
>> interpretation and implementation could be  done , C act like this ,i 
>> think)
>> but if it could be coded better i will use a better version
>
>
> Yes, it can be done better; see my reply on the other thread.
>
>
> Best,
> Jean



  reply	other threads:[~2022-09-12 19:19 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-04  8:19 macro definition for continue and break Damien Mattei
2022-09-04 10:08 ` Jean Abou Samra
     [not found]   ` <CADEOadd2OAL-Z4o9AAR_mQ5_NSjCA1tVz5cDgeufVZ=ocAx0vQ@mail.gmail.com>
2022-09-04 11:13     ` Jean Abou Samra
2022-09-12 19:19       ` Linus Björnstam [this message]
2022-09-12 20:57         ` Loop macros (was: Re: macro definition for continue and break) Maxime Devos
2022-09-12 21:09           ` Linus Björnstam
2022-09-13 14:25           ` Damien Mattei
2022-09-13 14:28             ` Maxime Devos
2022-09-14 15:56               ` Damien Mattei
2022-09-13 14:16         ` macro definition for continue and break Damien Mattei

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=e160ebd0-aa5d-42ce-bed8-26204b712836@www.fastmail.com \
    --to=linus.internet@fastmail.se \
    --cc=damien.mattei@gmail.com \
    --cc=guile-user@gnu.org \
    --cc=jean@abou-samra.fr \
    /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).