On Sun, Nov 4, 2012 at 12:33 PM, Oleg Endo wrote:
> On Sun, 2012-11-04 at 11:02 +1100, Clinton Mead wrote:
>> Hi All
>>
>> This is a feature request. To explain, lets say I want to create a
>> TriBool type, like so:
>>
>> enum TriBool { False, True, U
Hi All
This is a feature request. To explain, lets say I want to create a
TriBool type, like so:
enum TriBool { False, True, Unknown };
I now want to implement operator&&. I want operator&& to short
circuit, i.e. if the first argument is False the second argument
shouldn't be evaluated.
So I'll