mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
6 lines
178 B
Java
6 lines
178 B
Java
// "Fold expression into Stream chain" "true-preview"
|
|
class Test {
|
|
boolean foo(double[] arr) {
|
|
return arr[1] >= 5 && arr[3] >= 5 && arr[7] >= 5 && arr[9] <caret>>= 5;
|
|
}
|
|
} |