Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Java

Idiom #191 Check if any value in a list is larger than a limit

Given a one-dimensional array a, check if any value is larger than x, and execute the procedure f if that is the case

import static java.util.stream.IntStream.of;
if (of(a).anyMatch(i -> i > x)) f();
for (int i : a)
    if (i > x) {
        f();
        break;
    }
for(int i = 0; i<a.length;i++) {
	if(a[i]>x) {
		f();
		break;
	}
}
unsigned i;
for (i = 0; i < sizeof(a) / sizeof(a[0]); ++i) {
	if (a[i] > x) {
		f();
		break;
	}
}

New implementation...
< >
tkoenig