r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[Core] Discuss core issues

Izkata
26-Jul-2010
[17685]
(as in "multiple", not "multiply")
Steeve
26-Jul-2010
[17686]
forfor
Maxim
26-Jul-2010
[17687x2]
forsome is really nice.  I like the pun it goes well with the language 
(and its community) not taking itself too seriously.
the name is actually quite appropriate, since the dialect defines 
what is run or not... which implies that only SOME of the data will 
be operated on.
Steeve
26-Jul-2010
[17689]
mine is shorter, and is specialy suited to win further puzzles :-)
Gregg
26-Jul-2010
[17690x2]
traverse [
    all blk-n
    each [a b] blk-a
    skip blk-x 2
    each e blk-e
][
    ;...
]
Hmmm, what if you had a body block for each item in the dialect, 
so the main body is the innermost loop. Interesting to think about 
anyway.
Gabriele
27-Jul-2010
[17692x3]
Gregg, the issue becomes, do you want all of them to advance at the 
same time, or nested, and if nested, in which order?
I'd say that nested cases are already well handled by what we have 
so they can be ignored.
So... I guess your idea is not bad at all.
Graham
3-Aug-2010
[17695x7]
I wonder if there is a way for 'if to not return a value?
I'm looking for a pass thru mode if 'if is false
eg. if I want to avoid the #[none]

>> print rejoin [ "hello " if false [ "world" ]]
hello none

>> print rejoin [ "hello " either true [ "world" ]["" ]]
hello world
>> print rejoin [ "hello " if/only false [ "world" ]]
hello
so something like that ...
This is the construct I saw which I don't like

either true [ tail s ][s ]

which I could  then replace with

 if/only true [ tail ] s
It's less verbose and possibly clearer than using the 'either construct
Maxim
3-Aug-2010
[17702x3]
if/else false [][#[unset!]]
>> only: func [c b][if/else c b [#[unset!]]]
>> only true ["howdy"]
== "howdy"
>> only false ["howdy"]
is this what you need?
Graham
4-Aug-2010
[17705]
Nope .. 

>> print rejoin [ "Hello " only false [ "world" ]]
Hello ?unset?
Maxim
4-Aug-2010
[17706x4]
functions which don't return anything actually return unset!
rejoin is the culprit here.  the only reason your tail s works is 
because you are appending an empty block to a string, which = to 
appending an empty string to a string.
ex:  >> rejoin ["" prin ""]
== "?unset?"
IIRC R3's rejoin now ignores the unset values
Graham
4-Aug-2010
[17710]
I just want if/only to drop a value off the stack if false
Maxim
4-Aug-2010
[17711]
only: func [c b][if/else not c b [#[unset!]]]


you can reverse the truth, but you will always return unset!   there 
is no such thing as a function which doesn't return a value in REBOL.
Graham
4-Aug-2010
[17712]
I want to avoid these 'none values ... where you are forced to use 
'either
Maxim
4-Aug-2010
[17713x2]
well, you have to chose between unset! or none!, but R2's rejoin 
collects the unset values and appends them to strings (which is a 
bit dumb).
you can also use compose, which ignores unset! values.

>> reduce compose ["" (prin "")]
== [""]
Graham
4-Aug-2010
[17715]
that's for rejoin ... which is just one example
Maxim
4-Aug-2010
[17716]
yes, but other funcs will react differently to unset!... some will 
raise the "expects a value" error, for example, if you return unset! 
from 'IF and try to use it.
Graham
4-Aug-2010
[17717]
well, the value is just one more upstream :)
Maxim
4-Aug-2010
[17718x2]
>> print only true ["rr"]
rr
>> print only false [""]
** Script Error: print is missing its value argument
** Near: print only false [""]
ah, ok, you aren't trying to prevent a return value, but providing 
your own default.
Graham
4-Aug-2010
[17720]
I suspect it's not possible ...
Maxim
4-Aug-2010
[17721x2]
well, yes.  your only, just needs to require an argument value.
only = /only
Graham
4-Aug-2010
[17723]
in which case I might as well use 'either
Izkata
4-Aug-2010
[17724]
or use Maxim's 'only, just with a different value:
only: func [c b][if/else c b [copy {}]]
Graham
7-Aug-2010
[17725]
http://stackoverflow.com/questions/3400315/trigger-close-event-for-rebol-console/3402413#3402413


I think he's after the ctrl_close_event http://msdn.microsoft.com/en-us/library/ms683242(VS.85).aspx


though how he can detect it without any scripts running is beyond 
me.
So, is this detectable in the system port?
Ladislav
9-Aug-2010
[17726]
He obviously underspecified what he is after in the question.
Gabriele
9-Aug-2010
[17727]
Someone should point Carl to this, I'm pretty sure he wants to know: 
http://www.rebol.net/cgi-bin/rambo.r?id=4398&
Henrik
9-Aug-2010
[17728x2]
Notified him privately.
Gabriele:


Carl: "BTW, that REBOL example code is "C code" not REBOL. The crash 
occurs in GC due to a stack overflow. Works fine in R3. Ticket updated."
Anton
9-Aug-2010
[17730]
I don't understand how it is "C code". Anyone have any idea?
(And will R2 be fixed?)
PeterWood
10-Aug-2010
[17731]
I believe Carl is saying that in his opinion the code has been written 
in the style of C rather than making use of REBOL's language features.
Gabriele
10-Aug-2010
[17732]
Agreed that the code is "Javaish"... still, hard crashes are always 
worth fixing, you'll never know when they're going to bite you! (Maybe 
Carl should do a blog post explaining why that approach is bad and 
what is the alternative, most people get thaught that stuff in school 
and don't know better.)
Anton
10-Aug-2010
[17733]
Oh ok, I see. In that case, I'd like to see suggestions for how to 
do it more rebolishly. It doesn't immediately occur to me, not knowing 
the context for the code, how it should be better.

Another explanation could be that Carl is suggesting that such code 
(manipulating millions of vectors) makes more sense implemented in 
C (for higher performance), with rebol calling out to it.
Gabriele
11-Aug-2010
[17734]
Yes, that is a valid interpretation as well (things like that are 
not a good thing to do in REBOL). I do think that you can't give 
a more "rebolish" implementation without the context (that's the 
whole point of REBOL).