Non-nullable references, again

Michel Fortin michel.fortin at michelf.com
Fri Jan 2 17:35:08 PST 2009


On 2009-01-02 10:37:50 -0500, Benji Smith <dlanguage at benjismith.net> said:

>> case a?.b:c:
>>   break;
>> 
>> is this
>> 
>>   case ((a?).b):
>> c:
>>   break;
>> 
>> or is it
>> 
>> case (a ? b : c ) :
>> break;

How's this different from

	case a*.b:

is this:

	case ((a*).b):

or is it:

	case ((a) * (.b)):


-- 
Michel Fortin
michel.fortin at michelf.com
http://michelf.com/




More information about the Digitalmars-d mailing list