diff --git a/base/README.md b/base/README.md index da011a6e..bfa17255 100644 --- a/base/README.md +++ b/base/README.md @@ -89,6 +89,7 @@ The namespace exports the following: - [`copyIndexed( x )`][@stdlib/array/base/copy-indexed]: copy the elements of an indexed array-like object to a new "generic" array. - [`copy( x )`][@stdlib/array/base/copy]: copy the elements of an array-like object to a new "generic" array. - [`countFalsy( x )`][@stdlib/array/base/count-falsy]: count the number of falsy elements in an array. +- [`countIf( x, predicate[, thisArg] )`][@stdlib/array/base/count-if]: count the number of elements in an array which pass a test implemented by a predicate function. - [`countSameValueZero( x, value )`][@stdlib/array/base/count-same-value-zero]: count the number of elements in an array that are equal to a specified value. - [`countSameValue( x, value )`][@stdlib/array/base/count-same-value]: count the number of elements in an array that are equal to a specified value. - [`countTruthy( x )`][@stdlib/array/base/count-truthy]: count the number of truthy elements in an array. @@ -140,6 +141,7 @@ The namespace exports the following: - [`groupValues( x, groups )`][@stdlib/array/base/group-values]: group elements as arrays associated with distinct keys. - [`incrspace( start, stop, increment )`][@stdlib/array/base/incrspace]: generate a linearly spaced numeric array according to a provided increment. - [`indexOf( x, searchElement, fromIndex, equalNaNs )`][@stdlib/array/base/index-of]: return the index of the first element which equals a provided search element. +- [`join( x, separator )`][@stdlib/array/base/join]: return a string created by joining array elements using a specified separator. - [`lastIndexOf( x, searchElement, fromIndex, equalNaNs )`][@stdlib/array/base/last-index-of]: return the index of the last element which equals a provided search element. - [`last( x )`][@stdlib/array/base/last]: return the last element of an array-like object. - [`linspace( start, stop, length )`][@stdlib/array/base/linspace]: generate a linearly spaced numeric array. @@ -340,6 +342,8 @@ console.log( objectKeys( ns ) ); [@stdlib/array/base/count-falsy]: https://github.com/stdlib-js/array/tree/main/base/count-falsy +[@stdlib/array/base/count-if]: https://github.com/stdlib-js/array/tree/main/base/count-if + [@stdlib/array/base/count-same-value-zero]: https://github.com/stdlib-js/array/tree/main/base/count-same-value-zero [@stdlib/array/base/count-same-value]: https://github.com/stdlib-js/array/tree/main/base/count-same-value @@ -442,6 +446,8 @@ console.log( objectKeys( ns ) ); [@stdlib/array/base/index-of]: https://github.com/stdlib-js/array/tree/main/base/index-of +[@stdlib/array/base/join]: https://github.com/stdlib-js/array/tree/main/base/join + [@stdlib/array/base/last-index-of]: https://github.com/stdlib-js/array/tree/main/base/last-index-of [@stdlib/array/base/last]: https://github.com/stdlib-js/array/tree/main/base/last