Hi Petr,

I don't remember my number :-(

##) Support for native continue function (or continue refinement for break) in
loop functions, or something like this example for forall (but i think this is
slow):

continue: does [throw/name none 'continue]
forall: func [
    "Evaluates a block for every value in a series."
    [throw]
    'word [word!] {Word set to each position in series and changed as a
result}
    body [block!] "Block to evaluate each time"
][
    while [not tail? get word] [
        catch/name body 'continue
        set word next get word
    ]
]

a: [1 2 3 4 1 2 3 4]
forall a [if 2 < first a [continue] print first a]

---
Ciao
Romano

----- Original Message -----
From: "Petr Krenzelok" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 05, 2002 8:28 AM
Subject: [REBOL] Core 2.6 - Last minute requests - take your chance!


> Hello list,
>
> I had a nice chat with Carl on IOS Messenger, and we agreed upon
> following scenario:
>
> Core 2.6 is really near now, so we all have last chance to post bug
> reports, enhancement request, to be included in 2.6. Post it as a reply
> to this message. Those of us, being present on IOS Developer server,
> will look into it, and fill it into IOS bug database. But please, keep
> in mind following simple but clear rules, set-up by Carl.
>
> 1) ALL older DB requests should be submitted if you want them to be
> considered for 2.6.
>
> 2) Those requests that are "just a few lines" of change will be done.
>
> 3) Those requests where a user has already coded it, and we agree with
> the code, name, and API details, then we will add it.
>
> 4) And then, if there is a very serious problem
>
> 5) If it is a big change, and no code has been created, then it will not
> be in 2.6.
>
>
> So please - no multimedia stuff, no components, no modules, no
> threading, no dreamy stuff - let's save it for 3.0 :-)
>
> Thanks,
> -pekr-
>
> --
> To unsubscribe from this list, please send an email to
> [EMAIL PROTECTED] with "unsubscribe" in the
> subject, without the quotes.
>

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to