Let's say I have this boolean array:
bool something[4] = {false, false, false, false};
Now, is there any simple way to check if all the values in this array is true/false at once?
Instead of doing it like this:
if(something[0] == false && something[1] == false..)
dothis();