Does there happen to be a method that returns whet...
# announcements
k
Does there happen to be a method that returns whether a list contains an item that matches a given predicate? Basically something like this:
list.find{it > 5} != null
would be
list.containsMatch{it > 5}
.