The conditional-AND operator (&&) performs a logical-AND of its bool operands, but only evaluates its second operand if necessary. The conditional-AND operator cannot be overloaded, but overloads of ...
The conditional-AND operator (`&&`) performs a logical-AND of its `bool` operands, but only evaluates its second operand if necessary. except that if `x` is `false`, `y` is not evaluated, because the ...