You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[`67a57a2`](https://github.com/stdlib-js/stdlib/commit/67a57a2861401202eb362b67971cf023ecf1518b) - **docs:** refactor example to use array PRNG [(#8233)](https://github.com/stdlib-js/stdlib/pull/8233)_(by Udit Agarwal, Athan Reines)_
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,8 @@ The namespace has the following sub-namespaces:
92
92
93
93
- <spanclass="signature">[`anyByRight( collection, predicate[, thisArg ] )`][@stdlib/utils/any-by-right]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.</span>
94
94
- <spanclass="signature">[`anyBy( collection, predicate[, thisArg ] )`][@stdlib/utils/any-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one element in a collection passes a test implemented by a predicate function.</span>
95
+
- <spanclass="signature">[`anyInBy( object, predicate[, thisArg ] )`][@stdlib/utils/any-in-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one property in an object passes a test implemented by a predicate function.</span>
96
+
- <spanclass="signature">[`anyOwnBy( collection, predicate[, thisArg ] )`][@stdlib/utils/any-own-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one own property of a provided object passes a test implemented by a predicate function.</span>
95
97
- <spanclass="signature">[`any( collection )`][@stdlib/utils/any]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one element in a collection is truthy.</span>
96
98
- <spanclass="signature">[`append( collection1, collection2 )`][@stdlib/utils/append]</span><spanclass="delimiter">: </span><spanclass="description">add elements from one collection to the end of another collection.</span>
97
99
- <spanclass="signature">[`bifurcateBy( collection, [options,] predicate )`][@stdlib/utils/bifurcate-by]</span><spanclass="delimiter">: </span><spanclass="description">split values into two groups according to a predicate function.</span>
@@ -114,6 +116,7 @@ The namespace has the following sub-namespaces:
114
116
- <spanclass="signature">[`keyBy( collection, fcn[, thisArg ] )`][@stdlib/utils/key-by]</span><spanclass="delimiter">: </span><spanclass="description">convert a collection to an object whose keys are determined by a provided function and whose values are the collection values.</span>
115
117
- <spanclass="signature">[`noneByRight( collection, predicate[, thisArg ] )`][@stdlib/utils/none-by-right]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in a collection fail a test implemented by a predicate function, iterating from right to left.</span>
116
118
- <spanclass="signature">[`noneBy( collection, predicate[, thisArg ] )`][@stdlib/utils/none-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in a collection fail a test implemented by a predicate function.</span>
119
+
- <spanclass="signature">[`noneOwnBy( object, predicate[, thisArg ] )`][@stdlib/utils/none-own-by]</span><spanclass="delimiter">: </span><spanclass="description">tests whether every own property of an object fails a test implemented by a predicate function.</span>
117
120
- <spanclass="signature">[`none( collection )`][@stdlib/utils/none]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in a collection are falsy.</span>
118
121
- <spanclass="signature">[`pop( collection )`][@stdlib/utils/pop]</span><spanclass="delimiter">: </span><spanclass="description">remove and return the last element of a collection.</span>
119
122
- <spanclass="signature">[`prepend( collection1, collection2 )`][@stdlib/utils/prepend]</span><spanclass="delimiter">: </span><spanclass="description">add elements from one collection to the beginning of another collection.</span>
@@ -124,6 +127,7 @@ The namespace has the following sub-namespaces:
124
127
- <spanclass="signature">[`shift( collection )`][@stdlib/utils/shift]</span><spanclass="delimiter">: </span><spanclass="description">remove and return the first element of a collection.</span>
125
128
- <spanclass="signature">[`someByRight( collection, n, predicate[, thisArg ] )`][@stdlib/utils/some-by-right]</span><spanclass="delimiter">: </span><spanclass="description">test whether a collection contains at least `n` elements which pass a test implemented by a predicate function, iterating from right to left.</span>
126
129
- <spanclass="signature">[`someBy( collection, n, predicate[, thisArg ] )`][@stdlib/utils/some-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether a collection contains at least `n` elements which pass a test implemented by a predicate function.</span>
130
+
- <spanclass="signature">[`someOwnBy( obj, n, predicate[, thisArg ] )`][@stdlib/utils/some-own-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether an object contains at least `n` own properties which pass a test implemented by a predicate function.</span>
127
131
- <spanclass="signature">[`some( collection, n )`][@stdlib/utils/some]</span><spanclass="delimiter">: </span><spanclass="description">test whether a collection contains at least `n` elements which are truthy.</span>
128
132
- <spanclass="signature">[`tabulateBy( collection[, options,] indicator )`][@stdlib/utils/tabulate-by]</span><spanclass="delimiter">: </span><spanclass="description">generate a frequency table according to an indicator function.</span>
129
133
- <spanclass="signature">[`tabulate( collection )`][@stdlib/utils/tabulate]</span><spanclass="delimiter">: </span><spanclass="description">generate a frequency table.</span>
@@ -345,6 +349,7 @@ The namespace has the following sub-namespaces:
345
349
- <spanclass="signature">[`openURL()`][@stdlib/utils/open-url]</span><spanclass="delimiter">: </span><spanclass="description">open a URL.</span>
346
350
- <spanclass="signature">[`parallel( files, [options,] clbk )`][@stdlib/utils/parallel]</span><spanclass="delimiter">: </span><spanclass="description">execute scripts in parallel.</span>
347
351
- <spanclass="signature">[`parseJSON( str[, reviver] )`][@stdlib/utils/parse-json]</span><spanclass="delimiter">: </span><spanclass="description">parse a string as JSON.</span>
- <spanclass="signature">[`realmax( dtype )`][@stdlib/utils/real-max]</span><spanclass="delimiter">: </span><spanclass="description">return the maximum finite value capable of being represented by a numeric real type.</span>
349
354
- <spanclass="signature">[`realmin( dtype )`][@stdlib/utils/real-min]</span><spanclass="delimiter">: </span><spanclass="description">return the smallest positive normal value capable of being represented by a numeric real type.</span>
350
355
- <spanclass="signature">[`reFromString( str )`][@stdlib/utils/regexp-from-string]</span><spanclass="delimiter">: </span><spanclass="description">create a regular expression from a regular expression string.</span>
Copy file name to clipboardExpand all lines: async/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,7 @@ var o = ns;
65
65
- <spanclass="signature">[`mapValuesAsync( obj, [options,] transform, done )`][@stdlib/utils/async/map-values]</span><spanclass="delimiter">: </span><spanclass="description">map values from one object to a new object having the same keys.</span>
66
66
- <spanclass="signature">[`noneByRightAsync( collection, [options,] predicate, done )`][@stdlib/utils/async/none-by-right]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in a collection fail a test implemented by a predicate function, iterating from right to left.</span>
67
67
- <spanclass="signature">[`noneByAsync( collection, [options,] predicate, done )`][@stdlib/utils/async/none-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in a collection fail a test implemented by a predicate function.</span>
68
+
- <spanclass="signature">[`parallel( fcns, [options,] done )`][@stdlib/utils/async/parallel]</span><spanclass="delimiter">: </span><spanclass="description">execute functions in parallel and pass the results of all functions to a provided callback.</span>
68
69
- <spanclass="signature">[`reduceRightAsync( collection, initial, [options,] reducer, done )`][@stdlib/utils/async/reduce-right]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in a collection and return the accumulated result, iterating from right to left.</span>
69
70
- <spanclass="signature">[`reduceAsync( collection, initial, [options,] reducer, done )`][@stdlib/utils/async/reduce]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in a collection and return the accumulated result.</span>
70
71
- <spanclass="signature">[`waterfall( fcns, clbk[, thisArg] )`][@stdlib/utils/async/series-waterfall]</span><spanclass="delimiter">: </span><spanclass="description">execute functions in series, passing the results of one function as arguments to the next function.</span>
0 commit comments