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

World: r3wp

[Core] Discuss core issues

BrianH
18-Dec-2009
[15256x2]
IT could be a function that returns the thread-local top of the stack 
of implied subject values. IF would then push a value on that stack, 
and pop the value off when it returns. Might be tricky to make error-throw-safe, 
but easy to make thread-safe :)
A *lot* of code uses the trick of having IF or UNLESS return none 
when the condition is not met, so your other suggestion is unlikely.
Steeve
18-Dec-2009
[15258]
A *lot* ?
somewhat exaggerated :-)
BrianH
18-Dec-2009
[15259x2]
More every day. Every time another developer learns about this (5+ 
year old) trick they start using it. It's even used in mezzanines.
It is mostly used in combination with ANY and ALL for control flow.
Steeve
18-Dec-2009
[15261x2]
i use it too,but not so much
For complex control flow rules, i rather prefer CASE.

Most of the time, combitations of ALL ANY, can be replaced by a CASE 
structure (which is faster and more readable)
BrianH
18-Dec-2009
[15263x6]
I prefer CASE too, and have rewritten many mezzanines to use it :)
It doesn't always apply to the task at hand though. The IF and UNLESS 
return values have been applied to the general R3 control flow model, 
as have the changes to the ordinal return values, map! behavior, 
...
Gabriele, it occurs to me that if IT was native it could look up 
the stack to get its value. I'll try writing a (security hole) REBOL 
version of the function later today - it would require debug privileges 
to run so that it can call the STACK function.
The advantage to this approach is that it would be error-throw-safe, 
as well as thread-safe, and require no changes to IF or UNLESS :)
R3-only of course.
The value returned by IT would not be evaluated, so that you can 
work with active values safely.
Steeve
18-Dec-2009
[15269]
a sort of native POP function
BrianH
18-Dec-2009
[15270]
No, it would have to search back. Simply popping wouldn't be enough. 
What I'm really interested in is seeing if I can add CASE support.
Steeve
18-Dec-2009
[15271x2]
I don't know how the values evaluated are stacked by the VM. But 
i see the advantage of having a POP function.
We could easly create postfix functions.
e.g:
CONCAT: func [v][join pop v]

>> "a" concat "b"
=="ab"

All sort of new operators would be easy to construct
the stack function can return the prvious stacked value, but without 
removing it from the stack
Maxim
18-Dec-2009
[15273x2]
I like Gabriele's idea.  I am one of those that has been using the 
if/unless return value for years, and quite often.
(those two sentences should have been two posts)
Steeve
18-Dec-2009
[15275]
yeah, i didn't understood what u meant :-)
BrianH
18-Dec-2009
[15276x3]
Gabriele had two ideas - I liked one of them: IT :)
Steeve, R3 evaluation doesn't work that way - it's not a stack machine.
Your Forth focus is showing :)
Janko
18-Dec-2009
[15279]
I have to admit I was also thinking about some simple stack capabilities 
few times :) (I came back to rebol from factor)
Gregg
18-Dec-2009
[15280]
I have an old IF-IT function, which just does a bind/copy. I used 
it a bit when I first wrote it, but it hasn't become a part of my 
daily life.
Gabriele
19-Dec-2009
[15281x2]
Brian: a lot of code uses IF returning none, agreed, on UNLESS i'm 
not really sure, it's quite new. besides, it's not like R2 scripts 
run unchanged on R3; but anyway i was just thinking out loud, not 
really proposing anything.
Re: IT - the problem in looking up the stack is knowing which argument 
to look it up. I guess the first would work and be useful enough, 
though.
Paul
19-Dec-2009
[15283]
Isn't something like this code already built-in in REBOL and I'm 
just missing it:

copy-to: func [series [series!] arg /local cpd d][
    cpd: make type? series 10
    foreach item series [
        either not-equal? arg item [insert tail cpd item][break]
    ]
    cpd
]
Henrik
19-Dec-2009
[15284]
array/initial?
Paul
19-Dec-2009
[15285x3]
no as that would just put the initial values in the series
This function returns a copy of everything until it finds the value 
specified and then it breaks.
Seems such usefulness that it would be built in - so I keep thinking 
I'm missing something.
Henrik
19-Dec-2009
[15288x2]
you can do that with copy/part, as long as the /part is the same 
block
a: [b c d]
copy/part a find a 'd
== [b c]
Paul
19-Dec-2009
[15290]
Steeve, I love your thinking about the pop function.  I have wanted 
that feature before for operators myself.
Henrik
19-Dec-2009
[15291]
it must be the same block, not just an identical one
Paul
19-Dec-2009
[15292x2]
yeah Henrik,  I'm suprised that we need to combine functions though 
to achieve that.
I guess that is my point.  I would think we simply would have one 
function that does that.
Henrik
19-Dec-2009
[15294]
well, this allows you to put together any condition for the item 
you want to stop at, so I think it's OK. it's something else, if 
the code pattern occurs very often (never used this one).
Paul
19-Dec-2009
[15295x2]
Yeah that is fine Henrik.
wha tis the suffix-map in REBOL used for?
Steeve
19-Dec-2009
[15297x3]
Brian, even if the Rebol's VM  is not a true stack machine. It has 
a data stack, so that, the POP function could be emulated in some 
way.

A forth kernel, is nothing else than that. To simulate a stack machine 
on a processor that is not designed that way initially.
However, your response suggests that the cost would be high.
If it was possible, the 'IT function could be emulated like this:

IT: does [push pop]   ; pop the and repush the last stacked value 
(just to read it without modifying the stack).
With R3, currently we can do...

>> it: does [first stack/args 2]
>> if 1 + 1 [print it]
2
BrianH
19-Dec-2009
[15300x5]
IT would need to search up the stack to find the nearest appropriate 
function call frame - it doesn't just apply to the next call up.
Gabriele, UNLESS has been around for many years - just not used by 
many people because of personal preference. They used the slower 
IF NOT instead.
Paul, you won't need stack tricks to get user-defined operators in 
R3 - we'll just use user-defined op! functions.
The reason Steeve's proposal doesn't work is because the result of 
the prior expression is thrown away, not pushed on a stack.
Oh, and suffix-map is used by the codec system, afaik.
Rebolek
19-Dec-2009
[15305]
Brian, Steeve's examp;e works, you just have to do >>secure none