this is my problem. I have three booleans which are options I can have. I can have multiple combinations with the three options:
i.e. no options (all false) option 1 only option 1 and option 2 option 1 and option 2 and option 3 option 2 only option 2 and option 3 option 3 only etc
I need to check all the combinations, but I don't want to write a tons of if else if statements.
Is there a way a can obtain what the results should be?
something like
result = option1 & option2 & option3
and then I can just go in a switch statement to process the correct combination
Let me know if you need a more detailed explanation. Thanks in advance.
p.s. what I am trying to do here is to avoid having so many if else if statements and make my code look cleaner and better designed. So if you can think of another way to do, I'd appreciate it.
Thanks