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

World: r3wp

[Core] Discuss core issues

Henrik
22-Mar-2008
[9470x2]
the error checking you could do, would be to check for the range 
first and then pick your value, if the index is in range.
well, you'd have to write a lot more code, if it returned an error.
[unknown: 5]
22-Mar-2008
[9472x2]
I don't have to do none of that with skip+
>> a
== [1 2 3 4 5 6 7 8 9 10]
>> skip+ a 2 22
== none
Henrik
22-Mar-2008
[9474]
I can see you are worried about whether the returned none! is a value 
in your block or if it's out of range.
[unknown: 5]
22-Mar-2008
[9475]
exactly
Henrik
22-Mar-2008
[9476x2]
another reason extract does this, is to keep the block datatype for 
output. again you need to produce much more code, if the datatype 
is changed in the output.
you don't have to worry if you just check if the index is in range 
first.
[unknown: 5]
22-Mar-2008
[9478]
skip+ keeps the output in a block as well:

>> skip+ a 2 3
== [3 5 7 9]
Henrik
22-Mar-2008
[9479]
not when it's out of range :-)
[unknown: 5]
22-Mar-2008
[9480x2]
exactly.  I wouldn't want it to more often then I would
much easier to do:

to-block skip+ a 2 3 


then to determine if a none is an actual value being returned of 
my series.
Henrik
22-Mar-2008
[9482]
but... anyway, it's just two different principles. I prefer to do 
the error checking before doing operations in the series:

a: [1 2 3 4]
b: 7
either tail? at a b [print "whoa!"][extract a b]
[unknown: 5]
22-Mar-2008
[9483x2]
That is defeating the purpose of a mezz.   The mezzanines are so 
we don't need to use more code.
Makes me think we should have a poll for mezzanine changes.  Let 
the community decide.  Could be very beneficial to REBOL.
Henrik
22-Mar-2008
[9485]
how will you do error checking with less code in the example above?
[unknown: 5]
22-Mar-2008
[9486]
I'm saying with skip+ it is already done for me.  I can tell if something 
is out of range if it returns none.
Henrik
22-Mar-2008
[9487]
sure. that's why I think is impractical for cases like:

foreach val skip+ a 2 3 [do-something]


you will get a crash, when it returns none, and you will still need 
to do some type of range check to avoid the crash.
[unknown: 5]
22-Mar-2008
[9488x3]
i'm going to use extract for what I'm doing since I already am doing 
error checking on the front side in my scripts where I'm going to 
use extract but I'm only going to use it since it is built in.  But 
I'd rather see something similiar to the returns that skip+ provides 
instead.
Lastest Makedoc draft of TRETBASE for public download:

http://www.mediafire.com/?x8yu1mrl724
sorry wrong group
RobertS
23-Mar-2008
[9491x2]
; I liked this feature of ICON/UNICON where a func can have an initially 
block so I have this in REBOL
initial: func [wd [word!] /list /local functions]
  [
    functions: []
    if list [return functions]
    f: find functions wd
    either (found? f) 
      [return false] 
      [append functions wd return true]
  ]    


initially: func ['wd [lit-word!] blk [block!]][
    if (initial wd) [do blk]
]
; and to test initially
test: func [str [string!] /local prefix [string!]][
    prefix: ""
    initially 'test [prefix: "tested "]
    print [prefix str]
]
; which runs as, say
test "this"
; first time giving "tested this" and thereafter "this"
; thoughts on whether useful enough to go into the org library ?
; of course initial itself test more simply
>> initial 'append
== true
>> initial 'append
== false
BrianH
23-Mar-2008
[9493x2]
Paul, the changes to EXTRACT are part of a whole series of subtle 
changes to REBOL that are based on 3 ideas:

- NONE is a value that denotes no value, like UNSET but not an error 
- sort of like SQL NULL.

- Out of range isn't necessarily an error - you can choose to treat 
it as such as you like, or not. Boundaries are really an implementation 
detail in a language with autoexpanding series. The choice to have 
fixed boundaries is left to the developer.

- There is no difference between a NONE in the middle of a series 
and a NONE off the end. It's a missing value either way.


REBOL worked this way already in many cases, so we're making it more 
consistent.
Creating, evaluating, throwing and catching those error! values is 
really expensive - nones are much faster. Also, these error! values 
are generated in many cases now where the situation isn't really 
erroneous, which is a little presumptuous.
[unknown: 5]
23-Mar-2008
[9495x3]
I just don't like it Brian.  Like Henrik noticed I have a problem 
with it because it returns none as a value inside of the series. 
 I rather have it report none as a none! When it is reported as it 
is currently in extract it isn't a none! datatype it is a 'none word 
value.
Skip+ does it find BrianH and I don't have to catch any errors.
And it returns a none datatype if out of range.  I don't have to 
check for "out of range" as the none being returned tells me that.
BrianH
23-Mar-2008
[9498]
Sorry, I don't get something. Are you saying that EXTRACT is returning 
the word 'none rather than the value #[none], or that you are using 
the word 'none in your series for something else?
[unknown: 5]
23-Mar-2008
[9499x2]
It is returning the none in the block when I could actually already 
be using the word none in the block
So if I'm using 'none in the block and it is returning #[none] then 
I have to check to determine if the value returned is a none! or 
a 'none.
BrianH
23-Mar-2008
[9501x2]
Let's make a distinction here: The word 'none, the value #[none]. 
EXTRACT returns the value #[none]. What are you using 'none for?
Sorry, AltMe is locking up on me again. I wrote that message 2 minutes 
ago.
[unknown: 5]
23-Mar-2008
[9503]
Sometime I use the value none to specify that position in the series 
doesn't currently have a value.   I'm sure many have done this.
BrianH
23-Mar-2008
[9504]
That is how EXTRACT treats #[none], every time.
[unknown: 5]
23-Mar-2008
[9505]
Brian did you create the EXTRACT function or something as I can't 
see how anyone would prefer its return value over a simple return 
for general use.
BrianH
23-Mar-2008
[9506]
So your problem isn't with EXTRACT treating #[none] as no value, 
it's with it treating out-of-bounds as a non-error.
[unknown: 5]
23-Mar-2008
[9507x2]
Both
Did you try the skip+ function from above?
BrianH
23-Mar-2008
[9509]
I looked at skip+ above and could see from the code what it does.
[unknown: 5]
23-Mar-2008
[9510x2]
Notice here:

>> a
== [1 2 3 4 5 6 7 8 9 10]
>> skip+ a 2 1
== [1 3 5 7 9]
>> skip+ a 2 11
== none
Simple from its output I can tell that the index was out of range 
by the none that was returned.  Can't tell that from extract.
BrianH
23-Mar-2008
[9512]
Re "Both": You said that you treat #[none] as no value, even in the 
middle of a series, and that is what EXTRACT does, so no, that is 
not your problem.
[unknown: 5]
23-Mar-2008
[9513]
BrianH did you create the Extract function?
BrianH
23-Mar-2008
[9514x2]
As an aside, whenever someone posts a message to AltMe my client 
locks up for 30 seconds to a minute, making it impossible for me 
to type replies. I am frequently unable to answer a question until 
much later because of this. Please wait until I have answered before 
asking the next question, or I won't be able to type the answer.
Now in answer to your question, EXTRACT was created by the whole 
REBOL 3 group, though I wrote it. The changes to it were very intentional 
and the result of much debate. Please see the reasoning I wrote above.
[unknown: 5]
23-Mar-2008
[9516]
Well at least I got my skip+ function.
BrianH
23-Mar-2008
[9517]
Under what circumstances are you using out-of-bounds values?
[unknown: 5]
23-Mar-2008
[9518x2]
Does /base include mezzanines?
I don't Brian.  But I might want to know if the series was out of 
range to my request.