Skip to content

Commit 92b0e51

Browse files
authored
Merge branch 'stdlib-js:develop' into develop
2 parents a1106fb + 5b02960 commit 92b0e51

68 files changed

Lines changed: 739 additions & 744 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lib/node_modules/@stdlib/math/base/special/fast/uint32-log2/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ static const uint32_t S0 = 1u;
6363
uint32_t stdlib_base_fast_uint32_log2( const uint32_t x ) {
6464
uint32_t out;
6565
uint32_t xc;
66-
66+
6767
xc = x;
6868
out = 0;
6969
// `xc >= 65536`:

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1585,7 +1585,7 @@ deepGet,"@stdlib/object-deep-get"
15851585
deepHasOwnProp,"@stdlib/assert-deep-has-own-property"
15861586
deepHasProp,"@stdlib/assert-deep-has-property"
15871587
deepPluck,"@stdlib/utils-deep-pluck"
1588-
deepSet,"@stdlib/utils-deep-set"
1588+
deepSet,"@stdlib/object-deep-set"
15891589
defineMemoizedProperty,"@stdlib/utils-define-memoized-property"
15901590
defineProperties,"@stdlib/utils-define-properties"
15911591
defineProperty,"@stdlib/utils-define-property"

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2related/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/ndarray/base/ternary/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ The function accepts the following arguments:
125125

126126
## Notes
127127

128-
129128
- Each provided ndarray should be an object with the following properties:
130129

131130
- **dtype**: data type.

lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1701,7 +1701,6 @@ interface Namespace {
17011701
* @example
17021702
* var Float64Array = require( '@stdlib/array/float64' );
17031703
* var ndarray = require( '@stdlib/ndarray/ctor' );
1704-
* var ndarray2array = require( '@stdlib/ndarray/to-array' );
17051704
*
17061705
* function scale( z ) {
17071706
* return z * 10.0;
@@ -1719,10 +1718,7 @@ interface Namespace {
17191718
* 'dtype': 'generic'
17201719
* };
17211720
* var y = ns.map( x, opts, scale );
1722-
* // returns <ndarray>
1723-
*
1724-
* var arr = ndarray2array( y );
1725-
* // returns [ [ 20, 30, 40 ], [ 80, 90, 100 ] ]
1721+
* // returns <ndarray>[ [ 20, 30, 40 ], [ 80, 90, 100 ] ]
17261722
*/
17271723
map: typeof map;
17281724

@@ -2622,10 +2618,7 @@ interface Namespace {
26222618
*
26232619
* // Perform reduction:
26242620
* var out = ns.someBy( x, 3, isEven );
2625-
* // returns <ndarray>
2626-
*
2627-
* var v = out.get();
2628-
* // returns true
2621+
* // returns <ndarray>[ true ]
26292622
*
26302623
* @example
26312624
* var Float64Array = require( '@stdlib/array/float64' );
@@ -2655,10 +2648,7 @@ interface Namespace {
26552648
*
26562649
* // Perform reduction:
26572650
* var out = ns.someBy.assign( x, 3, y, isEven );
2658-
* // returns <ndarray>
2659-
*
2660-
* var v = out.get();
2661-
* // returns true
2651+
* // returns <ndarray>[ true ]
26622652
*/
26632653
someBy: typeof someBy;
26642654

0 commit comments

Comments
 (0)