Archived tweet #11589 from the @leastfixedpoint Twitter Archive@thingskatedid @xzqx @whitequark I'm not sure; I think I'd start by rearranging it to
return (condition == true) || false;
which then, by associativity, I'd probably change to
return condition == (true || false);
because ultimately, we're saying "condition is a boolean" here, by equating it to the set of bools