true
if a match was found, otherwise false
.true
, then the function will also return true
.SOME(animals, item.name == "cat")
true
SOME(animals, item.name == "horse")
false
SOME(animals, item.weight > 100)
true
SOME<product>(products, product.category == "Utility")
true
SOME<product, position>(products, position == 1)
true