Iterated elements type.
An iterable to test elements of.
A predicate function to test each element. Returns false
to continue tests, or true
to stop it
and return true
from the method call. It accepts the tested element as the only parameter.
true
if the callback function returned a truthy value for at least one element in the array, or false
otherwise. Returns false
for empty iterable.
Generated using TypeDoc
Tests whether at least one element of the given
iterable
passes the test implemented by the provided function.