@stdlib/assert-tools-array-like-function
Return a function which tests if every element in an array-like object passes a test condition.
@stdlib/array-base-accessor
Create a minimal array-like object supporting the accessor protocol from another array-like object.
@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-for-each
Invoke a function once for each element in a collection.
@stdlib/utils-async-for-each-right
Invoke a function once for each element in a collection, 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-inmap-right
Invoke a function for each element in a collection and update the collection in-place, iterating from right to left.
@stdlib/streams-node-from-strided-array
Create a readable stream from a strided array-like object.
@stdlib/streams-node-from-circular-array
Create a readable stream from a circular array-like object.
@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/streams-node-from-array
Create a readable stream from an array-like object.
@stdlib/utils-inmap
Invoke a function for each element in a collection and update the collection in-place.
@stdlib/utils-async-inmap
Invoke a function for each element in a collection and update the collection in-place.
@stdlib/utils-async-every-by
Test whether all elements in a collection pass a test implemented by a predicate function.
@stdlib/iter-to-array-view-right
Fill an array-like object view from right to left with values returned from an iterator.
@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-while-each-right
While a test condition is true, invoke a function for each element in a collection, iterating from right to left.
@stdlib/utils-none-by
Test whether all elements in a collection fail a test implemented by a predicate function.
@stdlib/utils-key-by-right
Convert a collection to an object whose keys are determined by a provided function and whose values are the collection values, iterating from right to left.
@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/iter-to-array-view
Fill an array-like object view with values returned from an iterator.
@stdlib/utils-until-each
Until a test condition is true, invoke a function for each element in a collection.
@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-key-by
Convert a collection to an object whose keys are determined by a provided function and whose values are the collection values.
@stdlib/utils-some
Test whether a collection contains at least `n` elements which are truthy.
@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-while-each
While a test condition is true, invoke a function for each element in a collection.
utils-until-each-right
Until a test condition is true, invoke a function for each element in a collection, iterating from right to left.
utils-every-by
Test whether all elements in a collection pass a test implemented by a predicate function.
utils-for-each-right
Invoke a function for each element in a collection, iterating from right to left.
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.
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.
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.