is there something like an `exists { Predicate } :...
# announcements
x
is there something like an
exists { Predicate } : Boolean
on collections?
m
.find { predicate }
?
r
There are functions like
any { ... }
,
all { ... }
,
none { ... }
, etc.
m
So
.any
if you only need to know at least one exists.
x
any
is what I’m looking for! thanks guys
👍 1