Let's say I have the following bools:
- isA
- isB
- isC
- isExistingA
- isExistingB
- isExistingC
When isA, isB, or isC is true, if all of the true bools' corresponding isExisting bools are also true, I want to do something. If isA, isB, or isC is false, then its corresponding isExisting bool does not matter.
Here's what I came up with:
if ((isA || isB || isC)
&& ((!isA || isExistingA)
&& (!isB || isExistingB)
&& (!isC || isExistingC)))
{
// do something
}
I apparently can't think today and was wondering if there are simpler ways to express this.
&&is associative, so you don't need the extra parens around the second and third ones. – Neil Feb 13 at 21:34ifstatement more readable when they get that complex. – Simon Whitehead Feb 13 at 21:53