// "Fold expression into Stream chain" "true-preview" class Test { boolean foo(String a, String b, String c, String d) { return a.startsWith("xyz") && b.startsWith("xyz") && c.startsWith("xyz") && d.startsWith("xyz"); } }