syntax idea: simplifed ifs
Fredrik Olsson
peylow at treyst.se
Wed Apr 19 01:05:04 PDT 2006
dennis luehring skrev:
> Fredrik Olsson schrieb:
>> Hasan Aljudy skrev:
>>> dennis luehring wrote:
>> <SNIP>
>>> I've always wanted something like this!!!! but I think the proposed
>>> syntax might not fit very well with the D grammar.
>>>
>> This problem domain and and then some is easily solved with sets, as I
>> have proposed at many occasions in the past :).
>>
>> As arrays are supersets of sets (Array is an ordered set), my
>> proposals works nicely with the array suggestions in this thread as well.
>>
>> The proposal is to steal the functionality as is from Pascal, no need
>> to invent something new, when others already have done it, and put it
>> to three decades of testing.
>>
>> Only some more fancy C/D like syntax is needed.
>>
>> // Fredrik Olsson
>
> how would you write these example in your in syntax?
>
Not that easy as sets is mostly not a simple solution for complex
conditions, but a simple solution to complex set problems.
> if( x == [ a && !b || c ] ) --> if( x == a && x == !b || x == c )
>
> if( x == [ a && (!b || c)] ) --> if( x == a && ( x == !b || x == c ) )
>
These are not good examples of where sets strength lies, this is a
better example:
if (x == [a || b || c]) --> if (x == a || x == b || x == c)
would be
if (x in <a, b, c>)
But the true power lies in what can be done with sets, unions,
intersections, etc.
regards
// Fredrik Olsson
More information about the Digitalmars-d
mailing list