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

World: r3wp

[!REBOL3-OLD1]

Maxim
6-Apr-2006
[258x2]
HA!  if the value is a set word?
as in f: func [/opt val: 4 [integer!]] [print val]
MichaelB
6-Apr-2006
[260x2]
one problem could be how to handle
f: func [/opt a-word [integer!]][...]
actually I kind of like this also - and wouldn't cause interpretation 
problems
Maxim
6-Apr-2006
[262]
it is very consistent with the rest of REBOL IMHO
MichaelB
6-Apr-2006
[263]
problem compared to 
f: func [/opt a-word [the-word]][...]
Maxim
6-Apr-2006
[264]
Gabriele said there might be issues with using a set word within 
the func spec block,  but if func really is a dialect... I don't 
see how.
MichaelB
6-Apr-2006
[265x2]
so what was the reason against your last (and has been before) idea 
?
ok
Maxim
6-Apr-2006
[267x2]
in any case, some words should be reserved  (like 'return)
So Gregg what do you think?
Gregg
6-Apr-2006
[269x2]
I think either one of these last two options we've come up with could 
work. I want to think about it a bit more, and others may chime in 
as well. I'm wondering if the extra block approach as easy to do, 
and had good performance, where this may have a bigger impact, but 
I like this line of thinking much better.
as easy to do = was easy to do
Maxim
6-Apr-2006
[271]
I do think that the set word approach is more approachable and much 
more readable... do you agree?
Gregg
6-Apr-2006
[272]
I'm not sure. At a glance I like it, but then I think about other 
things that we may want to do in the future, e.g. constraints.
Maxim
6-Apr-2006
[273]
constraints?
Gregg
6-Apr-2006
[274]
e.g. specify that an integer param must be positive.
Maxim
6-Apr-2006
[275x2]
honestly, Gregg, if you measure the times you'd need a default value 
wrt any other func enhancement ... I am sure default values are far 
ahead.
just about every other func I use would have default values in them. 
 hell in python I don't even recall one function which didn't have 
default values... they are just so usefull.
Gregg
6-Apr-2006
[277]
True, today, but I also know that I have a *lot* of code that validates 
parameter values, and if that could be done declaratively...
MichaelB
6-Apr-2006
[278]
one thing that is better in the [] version is that it fits with the 
current model of annotating the value in front of it
Gregg
6-Apr-2006
[279]
It's the REBOL problem of being able to do anything, and we need 
to think about how we really want to write functions IF (and that's 
a big IF) it's something that affects R3.
Maxim
6-Apr-2006
[280]
but the block also get ambiguous, as gregg pointed out, trying to 
set a default value of datatype gets pretty unobvious... and even 
quirky.
Gregg
6-Apr-2006
[281]
i.e. if we come up with a really ambitious func spec dialect, should 
we propose it now, for R4, or never (and just mezz it in for those 
who want to use it)?
Maxim
6-Apr-2006
[282]
hum... are default values part of  ambitious?
Gregg
6-Apr-2006
[283x2]
I think they're the first step on that slippery slope. :-)
Not too ambitious in themselves though, and *so* useful that I think 
it's worth pushing for it.
Maxim
6-Apr-2006
[285x2]
hehe, IMHO NOT having default values is a current REBOL shortcomming. 
 ;-)
a lot of code would get a few lines trimmed
Gregg
6-Apr-2006
[287]
I agree 100%.
Maxim
6-Apr-2006
[288]
especially if the values are reset at each function call.
Gregg
6-Apr-2006
[289x2]
Trimmed, and become much cleaner in intent.
cleaner = clearer. doh! :-)
Maxim
6-Apr-2006
[291x2]
yes, especially if the set-word approach is used... just a casual 
glance at the spec indicates something is being set.  otherwise, 
one needs to know it.
the datatype block is obvious because they are datatypes within the 
block.
Gregg
6-Apr-2006
[293]
Gotta run. Great chat guys!
MichaelB
6-Apr-2006
[294x3]
square: func [x [decimal! (x > 0) complex!]][x * x]


will be very difficult to get it right if other things should be 
allowed later :-/
should have been sqrt :-)
and for sure no x * x in the end - too late today
Maxim
6-Apr-2006
[297]
hehe
MichaelB
6-Apr-2006
[298x2]
actually I don't mind both things, but I would like to see support 
for conditions or general assertions and other stuff and wouldn't 
like to compromise a larger concept for having a little bit easier 
default values in a different way
is like always designing something good and useful is a difficult 
job
Maxim
6-Apr-2006
[300x2]
the parens make a lot of sense here.  they imply evaluation.  :-) 
 thus you expect that to be evaluated wrt any integer! value... good 
idea
I meant decimal! value , doh
MichaelB
6-Apr-2006
[302x3]
I thought it looked quite nice, but if you think about more elaborate 
guards it might get fast confusing - e.g. would be nice to define 
a guard for a return value or an general condition to be met not 
regarding the arguments ..... but having an interesting dialect there 
would be nice IMO
but on could use the restricted 'return you where talking about
square: func [[(return > 0) (return = x * x)] x [integer!]][x * x] 
 
even if stupid in this case :-)
Maxim
6-Apr-2006
[305x2]
hum  I wonder if very elaborate entry checks are such a boon directly 
within the func spec ... I mean, it amounts to the exact same code, 
but being place there instead of within the body... I wonder, because 
the use of all/any shrinks this so much... code wise...
we dont have to do nested if / then within rebol.. so checking all 
the args can be done in one simple line using all [ () () () ]
MichaelB
6-Apr-2006
[307]
you're right - I guess that's the problem with the dynamic languages 
which are already very concise