Example code follows:
bool result;
result = Operation1();
result &= Operation2();
result &= Operation3();
return result;
The intention is to ensure that, if any of the functions returns false, the functions that follow are not called. Is this syntax correct or do I need to do result = result && Operation2();?
&in the end. – djeidot Nov 29 '10 at 18:50&&=operator, the question is moot now that you've realised&=is bitwise, right? – Steve Jessop Nov 29 '10 at 19:01&=too, right? You aren't suggesting that you'd use bitwise operators interchanged along with boolean operators? – T.E.D. Nov 29 '10 at 19:12