Checks if at least one element in the array satisfies the given condition.
Similar to JavaScript's native some() method but implemented in curried
form for better compatibility with functional programming style. Returns
true immediately when the first element satisfying the condition is found.
Checks if at least one element in the array satisfies the given condition.
Similar to JavaScript's native some() method but implemented in curried form for better compatibility with functional programming style. Returns true immediately when the first element satisfying the condition is found.
Example