|
|
|
|
|
by ndunn2
5644 days ago
|
|
exactly the example I was going to cite. In Scala this would be val b = a.exists(str=>str.forall(_.isLowerCase)) or val b = a.exists(x=>x.toLowerCase() == x) There's no way I'd start using functional programming in Java if it's this clunky. Just stick with Scala. |
|
boolean b = a.any(λ(s, s.equals(s.toLowerCase()));
s and λ are statically imported.