Skip to content

Commit 61e35e1

Browse files
Planeshifterstdlib-bot
authored andcommitted
docs: update REPL namespace documentation
Signed-off-by: stdlib-bot <[email protected]>
1 parent 062b80e commit 61e35e1

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

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
@@ -3108,7 +3108,7 @@ UINT32_NUM_BYTES,"@stdlib/constants-uint32-num-bytes"
31083108
Uint32Array,"@stdlib/array-uint32"
31093109
umask,"@stdlib/process-umask"
31103110
uncapitalize,"@stdlib/string-uncapitalize"
3111-
uncapitalizeKeys,"@stdlib/utils-uncapitalize-keys"
3111+
uncapitalizeKeys,"@stdlib/object-uncapitalize-keys"
31123112
uncurry,"@stdlib/utils-uncurry"
31133113
uncurryRight,"@stdlib/utils-uncurry-right"
31143114
UNICODE_MAX,"@stdlib/constants-unicode-max"

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/repl/code-blocks/data/data.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2522,8 +2522,8 @@ base.strided.variancewd,"var x = [ 1.0, -2.0, 2.0 ];\nbase.strided.variancewd( x
25222522
base.strided.variancewd.ndarray,"var x = [ 1.0, -2.0, 2.0 ];\nbase.strided.variancewd.ndarray( x.length, 1, x, 1, 0 )\nx = [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ];\nbase.strided.variancewd.ndarray( 3, 1, x, 2, 1 )\n"
25232523
base.strided.varianceyc,"var x = [ 1.0, -2.0, 2.0 ];\nbase.strided.varianceyc( x.length, 1.0, x, 1 )\nx = [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0 ];\nbase.strided.varianceyc( 3, 1.0, x, 2 )\nvar x0 = new Float64Array( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );\nvar x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nbase.strided.varianceyc( 3, 1.0, x1, 2 )\n"
25242524
base.strided.varianceyc.ndarray,"var x = [ 1.0, -2.0, 2.0 ];\nbase.strided.varianceyc.ndarray( x.length, 1.0, x, 1, 0 )\nvar x = [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ];\nbase.strided.varianceyc.ndarray( 3, 1.0, x, 2, 1 )\n"
2525-
base.strided.zmap,"var xbuf = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ];\nvar x = new Complex128Array( xbuf );\nvar y = new Complex128Array( x.length );\nbase.strided.zmap( x.length, x, 1, y, 1, base.cidentity );\nvar v = y.get( 0 )\nvar re = real( v )\nvar im = imag( v )\ny = new Complex128Array( x.length );\nbase.strided.zmap( 2, x, 2, y, -1, base.cidentity );\nv = y.get( 0 )\nre = real( v )\nim = imag( v )\nvar x0 = new Complex128Array( xbuf );\nvar y0 = new Complex128Array( x0.length );\nvar x1 = new Complex128Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nvar y1 = new Complex128Array( y0.buffer, y0.BYTES_PER_ELEMENT*2 );\nbase.strided.zmap( 2, x1, -2, y1, 1, base.cidentity );\nv = y1.get( 0 )\nre = real( v )\nim = imag( v )\n"
2526-
base.strided.zmap.ndarray,"var xbuf = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ];\nvar x = new Complex128Array( xbuf );\nvar y = new Complex128Array( x.length );\nbase.strided.zmap.ndarray( x.length, x, 1, 0, y, 1, 0, base.cidentity );\nvar v = y.get( 0 )\nvar re = real( v )\nvar im = imag( v )\nx = new Complex128Array( xbuf );\ny = new Complex128Array( x.length );\nbase.strided.zmap.ndarray( 2, x, 2, 1, y, -1, y.length-1, base.cidentity );\nv = y.get( y.length-1 )\nre = real( v )\nim = imag( v )\n"
2525+
base.strided.zmap,"var xbuf = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ];\nvar x = new Complex128Array( xbuf );\nvar y = new Complex128Array( x.length );\nbase.strided.zmap( x.length, x, 1, y, 1, base.cidentity );\nvar v = y.get( 0 )\ny = new Complex128Array( x.length );\nbase.strided.zmap( 2, x, 2, y, -1, base.cidentity );\nv = y.get( 0 )\nvar x0 = new Complex128Array( xbuf );\nvar y0 = new Complex128Array( x0.length );\nvar x1 = new Complex128Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nvar y1 = new Complex128Array( y0.buffer, y0.BYTES_PER_ELEMENT*2 );\nbase.strided.zmap( 2, x1, -2, y1, 1, base.cidentity );\nv = y1.get( 0 )\n"
2526+
base.strided.zmap.ndarray,"var xbuf = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ];\nvar x = new Complex128Array( xbuf );\nvar y = new Complex128Array( x.length );\nbase.strided.zmap.ndarray( x.length, x, 1, 0, y, 1, 0, base.cidentity );\nvar v = y.get( 0 )\nx = new Complex128Array( xbuf );\ny = new Complex128Array( x.length );\nbase.strided.zmap.ndarray( 2, x, 2, 1, y, -1, y.length-1, base.cidentity );\nv = y.get( y.length-1 )\n"
25272527
base.str2multislice,"var s = new base.str2multislice( 'MultiSlice(null,null,null)' );\ns.data\ns = new base.str2multislice( 'MultiSlice(10,Slice(0,10,1),null)' );\ns.data\n"
25282528
base.str2slice,"var s = new base.str2slice( 'Slice(1,10,1)' );\ns.start\ns.stop\ns.step\ns = new base.str2slice( 'Slice(2,5,2)' );\ns.start\ns.stop\ns.step\n"
25292529
base.sub,"var v = base.sub( -1.0, 5.0 )\nv = base.sub( 2.0, 5.0 )\nv = base.sub( 0.0, 5.0 )\nv = base.sub( -0.0, 0.0 )\nv = base.sub( NaN, NaN )\n"

lib/node_modules/@stdlib/repl/code-blocks/data/data.json

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

lib/node_modules/@stdlib/repl/help/data/data.csv

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)