World: r3wp
[!REBOL3-OLD1]
older newer | first last |
Anton 11-Apr-2006 [496] | Maxim, now's the time to fix some things, no ? |
Maxim 11-Apr-2006 [497x2] | I agree with the select (I was just joking, cause you know how serious this will have an effect on code :-) |
But this raises again, the issue of trying to get backwards compatibility and is it even possible? with so much changes in the air? | |
Pekr 11-Apr-2006 [499] | I sacrifice backwards compatibility, we have got incompatibilities already in the past and so what? Especially to View changes .... |
Henrik 11-Apr-2006 [500] | and the user base is small. CNN and Wall Street won't notice |
Maxim 11-Apr-2006 [501] | but changes like Anton's SELECT request invalidate MOST of REBOL code in one sweeping ARC. |
Pekr 11-Apr-2006 [502x2] | but as for select ... uhm, not sure :-) it is about logical order of arguments, no? first, select, pick, find, all require "where" argument first, then "what" argument ... |
do we have reversed order? | |
Henrik 11-Apr-2006 [504] | I keep swapping them too, from SQL with SELECT <columns> FROM <source> |
Maxim 11-Apr-2006 [505] | we must question if such a change is better if it means newbies cannot use any public rebol code on rebol.org, for example. |
Henrik 11-Apr-2006 [506] | same with FIND. it's not natural to say "Find in the kitchen a pot" in English |
Maxim 11-Apr-2006 [507] | its consistency. and although its not english, its damn easier to remember that way. they all use the same "SERIES first" approach. |
Pekr 11-Apr-2006 [508x2] | yes, I objected agains it during rebol 1.0 alpha, but Carl already chose such argument order for some reason ... I think that to change it nowadays would be an overkill |
I totally agree with Maxim - we either change all, or none of them - it will be confusing .... and it would really break all the code ... | |
Maxim 11-Apr-2006 [510x3] | probably because having series first means all arguments treating data follow it. |
instead of having the series jump around in one function to another. | |
THAT would be damn hard to debug. | |
Gabriele 11-Apr-2006 [513] | don't forget that it's not just style - some of them are actions, and actions only dispatch on the first argument. |
Volker 11-Apr-2006 [514] | Isnt 'switch exactly that, a reversed "do select"? i use 'select on variables, not blocks. then it is > select data face/text About english, "Find in the kitchen a pot" is ugly, but "look in the kitchen for a pot"? |
Kaj 11-Apr-2006 [515] | It's poetic :-) |
Henrik 11-Apr-2006 [516] | volker, that was the point I was making with FIND |
Volker 11-Apr-2006 [517x3] | That was why i was citing it :) |
but i would argue more about the word "find" than the order of arguments. But maybe i am to used to "target first"? | |
(or is "look in" as ugly? Not native speaker..) | |
Henrik 11-Apr-2006 [520] | look in seems to be correct enough. I'm just used to finding the pot in the kitchen, not finding in the kitchen a pot, thus I usually swap the function arguments by mistake. |
Volker 11-Apr-2006 [521x2] | Technically it could work, if 'in would put its argument in front of the last call > find pot in kitchen ; Kitchen would be passed as first argument now. would be the same as > find kitchen pot (sadly 'in is not available, and maybe its to biga hack?) |
find pot @ kitchen ;? | |
JaimeVargas 11-Apr-2006 [523] | Grabriele, Maybe that is that actions only dispatch on the first argument. Has there been any talk of multimethods. So far the only way to have native polymorphism is thrue ports. I wish rebol implemented multi-methods. |
yeksoon 12-Apr-2006 [524] | for those who want RSS feed for Rebol3 blogs, Carl has updated it. http://www.rebol.net/r3blogs/rebol3-rss.xml |
Pekr 12-Apr-2006 [525] | Jaime, could you please voice your multimethod request to blog comments section? I think that Carl is not checking Altme here anymore ..... |
Graham 12-Apr-2006 [526x2] | Pity we can't take the comments and inject them into here. |
the fragmentation of information is just increasing. | |
Henrik 12-Apr-2006 [528] | anyone know why the priorities of +, - and *, / are swapped. This is a little annoying, I think. |
Gabriele 12-Apr-2006 [529] | henrik, there are no priorities. |
Henrik 12-Apr-2006 [530] | oh well, but it still forces you to rethink your expressions |
Gabriele 12-Apr-2006 [531x5] | jaime, i don't think multimethods have been discussed for r3. they would be nice... but really only if we get custom datatypes too. |
a tend to agree with you, but some people say that priorities force them to rethink their expressions... | |
so, in the end, no rule is easier to remember than some rules, thus i got to like the rebol way. | |
you should be able to find my old eval function to eval (and compile) math expressions with priorities and so on. | |
(was posted to ml many years ago, some archive should have it) | |
DideC 12-Apr-2006 [536] | It's explain in the doc : priority go from left to right, nothing more. The rule is different than the mathematical one we used to use. But it's also a "simple" rule, easy to remember. So, >> 3 + 2 * 5 == 25 |
Sunanda 12-Apr-2006 [537] | gabriele: luckily, Brett had a copy: http://www.rebol.org/cgi-bin/cgiwrap/rebol/ml-display-message.r?m=rmlLNJK Otherwise the trail could have ended here: http://www.rebol.org/cgi-bin/cgiwrap/rebol/ml-display-message.r?m=rmlXSDC |
PeterWood 12-Apr-2006 [538] | It was easy to find Gabriele's eval script through the topic index at Rebol.org. It's at http://www.rebol.org/cgi-bin/cgiwrap/rebol/ml-display-message.r?m=rmlXWHS |
Henrik 12-Apr-2006 [539] | interesting. wonder if it could be made into handling symbolic math... |
Pekr 12-Apr-2006 [540] | Gabriele - as for multimethods, aren't we getting custom datatypes with rebol3? I thought Carl said that language will be "extensible", whatever extensible means though :-) |
Vincent 12-Apr-2006 [541] | Priorities would mean more special cases for the evaluation - instead of a consistent op! behaviour. It's not just + * - /, it's for // ** and or xor = > >= <= <> == =? too. The left to right rule is itself quite an improvement in readability over the pure form: >> * + 3 2 5 == 25 |
JaimeVargas 12-Apr-2006 [542] | Please lets not make the mistake of using C precedence for basic ops. It will slow rebol. |
Maxim 12-Apr-2006 [543] | and using parens work anyways. |
Gabriele 12-Apr-2006 [544] | Petr, about custom types, probably yes, but I don't think this has been decided yet; In case we have them, i think that at least TO needs to be implemented as a multimethod; then having multimethods in general might make sense... but I don't think this is going to be very high priority (there are more important things). |
Anton 12-Apr-2006 [545] | Gabriele, that was very interesting insight into the action dispatch. Hmmm... I guess the code-breaking aspect of swapping select's arguments as well as the fact that the interpreter would probably be slowed down sways me against the idea. |
older newer | first last |