I have a boolean array in java:
boolean[] myArray = new boolean[10];
What\'s the most elegant way to check if all the values are true?
boolean alltrue = true; for(int i = 0; alltrue && i
I think this looks ok and behaves well...