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