Skip to content

Commit e9f214c

Browse files
committed
docs: update REPL docs
1 parent c4cbfda commit e9f214c

File tree

10 files changed

+13
-8
lines changed

10 files changed

+13
-8
lines changed

Diff for: lib/node_modules/@stdlib/repl/code-blocks/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ aoneTo,"var arr = aoneTo( 2 )\narr = aoneTo( 2, 'float32' )\n"
3636
aoneToLike,"var arr = aoneToLike( [ 0, 0 ] )\narr = aoneToLike( [ 0, 0 ], 'float32' )\n"
3737
APERY,"APERY\n"
3838
append,"var arr = [ 1.0, 2.0, 3.0, 4.0, 5.0 ];\narr = append( arr, [ 6.0, 7.0 ] )\narr = new Float64Array( [ 1.0, 2.0 ] );\narr = append( arr, [ 3.0, 4.0 ] )\narr = { 'length': 0 };\narr = append( arr, [ 1.0, 2.0 ] )\n"
39+
aput,"var x = [ 1, 2, 3, 4 ];\nvar out = aput( x, [ 1, 3 ], [ 20, 40 ] )\nvar bool = ( out === x )\n"
3940
ARCH,"ARCH\n"
4041
argumentFunction,"var argn = argumentFunction( 1 );\nvar v = argn( 3.14, -3.14, 0.0 )\nv = argn( -1.0, -0.0, 1.0 )\nv = argn( 'beep', 'boop', 'bop' )\nv = argn( 'beep' )\n"
4142
ARGV,"var execPath = ARGV[ 0 ]\n"

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

+1-1
Large diffs are not rendered by default.

Diff for: lib/node_modules/@stdlib/repl/help/data/data.csv

+4-3
Large diffs are not rendered by default.

Diff for: lib/node_modules/@stdlib/repl/help/data/data.json

+1-1
Large diffs are not rendered by default.

Diff for: lib/node_modules/@stdlib/repl/info/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ aoneTo,"\naoneTo( n:integer[, dtype:string] )\n Generates a linearly spaced n
3636
aoneToLike,"\naoneToLike( x:TypedArray|Array[, dtype:string] )\n Generates a linearly spaced numeric array whose elements increment by 1\n starting from one and having the same length and data type as a provided\n input array.\n"
3737
APERY,"\nAPERY\n Apéry's constant.\n"
3838
append,"\nappend( collection1:Array|TypedArray|Object, \n collection2:Array|TypedArray|Object )\n Adds the elements of one collection to the end of another collection.\n"
39+
aput,"\naput( x:ArrayLikeObject, indices:ArrayLikeObject<integer>, \n values:ArrayLikeObject[, options:Object] )\n Replaces specified elements of an array with provided values.\n"
3940
ARCH,"\nARCH\n Operating system CPU architecture for which the JavaScript runtime binary\n was compiled.\n"
4041
argumentFunction,"\nargumentFunction( idx:integer )\n Returns a function which always returns a specified argument.\n"
4142
ARGV,"\nARGV\n An array containing command-line arguments passed when launching the calling\n process.\n"

Diff for: lib/node_modules/@stdlib/repl/info/data/data.json

+1-1
Large diffs are not rendered by default.

Diff for: lib/node_modules/@stdlib/repl/signature/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ aoneTo,"aoneTo( n[, dtype] )"
3636
aoneToLike,"aoneToLike( x[, dtype] )"
3737
APERY,"APERY"
3838
append,"append( collection1, collection2 )"
39+
aput,"aput( x, indices, values[, options] )"
3940
ARCH,"ARCH"
4041
argumentFunction,"argumentFunction( idx )"
4142
ARGV,"ARGV"

Diff for: lib/node_modules/@stdlib/repl/signature/data/data.json

+1-1
Large diffs are not rendered by default.

Diff for: lib/node_modules/@stdlib/repl/typed-signature/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ aoneTo,"aoneTo( n:integer[, dtype:string] )"
3636
aoneToLike,"aoneToLike( x:TypedArray|Array[, dtype:string] )"
3737
APERY,"APERY"
3838
append,"append( collection1:Array|TypedArray|Object, collection2:Array|TypedArray|Object )"
39+
aput,"aput( x:ArrayLikeObject, indices:ArrayLikeObject<integer>, values:ArrayLikeObject[, options:Object] )"
3940
ARCH,"ARCH"
4041
argumentFunction,"argumentFunction( idx:integer )"
4142
ARGV,"ARGV"

Diff for: lib/node_modules/@stdlib/repl/typed-signature/data/data.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)