@stdlib/utils-async-some-by-right
Test whether a collection contains at least `n` elements which pass a test implemented by a predicate function, iterating from right to left.
@stdlib/utils-async-any-by-right
Test whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.
@stdlib/utils-async-some-by
Test whether a collection contains `n` elements which pass a test implemented by a predicate function.
@stdlib/utils-async-any-by
Test whether at least one element in a collection passes a test implemented by a predicate function.
@stdlib/utils-async-every-by-right
Test whether all elements in a collection pass a test implemented by a predicate function, iterating from right to left.
@stdlib/utils-async-every-by
Test whether all elements in a collection pass a test implemented by a predicate function.
@stdlib/utils-async-none-by-right
Test whether all elements in a collection fail a test implemented by a predicate function, iterating from right to left.
@stdlib/utils-async-none-by
Test whether all elements in a collection fail a test implemented by a predicate function.
@stdlib/utils-some-by
Test whether a collection contains at least `n` elements which pass a test implemented by a predicate function.
@stdlib/utils-none-by
Test whether all elements in a collection fail a test implemented by a predicate function.
@stdlib/utils-any-by
Test whether at least one element in a collection passes a test implemented by a predicate function.
@stdlib/utils-any-by-right
Test whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.
@stdlib/utils-none-by-right
Test whether all elements in a collection fail a test implemented by a predicate function, iterating from right to left.
utils-every-by-right
Test whether all elements in a collection pass a test implemented by a predicate function, iterating from right to left.
@stdlib/utils-some-by-right
Test whether a collection contains at least `n` elements which pass a test implemented by a predicate function, iterating from right to left.
utils-every-by
Test whether all elements in a collection pass a test implemented by a predicate function.
array-base-cusome-by-right
Cumulatively test whether at least `n` elements in a provided array pass a test implemented by a predicate function, while iterating from right-to-left.
array-base-cunone-by-right
Cumulatively test whether no array element in a provided array passes a test implemented by a predicate function, while iterating from right-to-left.
utils-some-in-by
Test whether an object contains at least n properties (own and inherited) which pass a test implemented by a predicate function.
object-some-in-by
Test whether an object contains at least n properties (own and inherited) which pass a test implemented by a predicate function.
object-every-own-by
Explore the `object-every-own-by` library for efficient property retrieval in JavaScript objects. Ideal for numerical computation in Node.js and browsers. 🚀🌐
array-base-cuany-by-right
Cumulatively test whether at least one array element in a provided array passes a test implemented by a predicate function, while iterating from right-to-left.
iter-cusome-by
Create an iterator which cumulatively tests whether at least `n` iterated values pass a test implemented by a predicate function.
array-base-cuevery-by-right
Cumulatively test whether every array element in a provided array passes a test implemented by a predicate function, while iterating from right-to-left.