Skip to content

Commit

Permalink
feat: update REPL namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte authored and stdlib-bot committed Aug 25, 2023
1 parent 36d8cb7 commit 0d296d1
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 11 deletions.
3 changes: 2 additions & 1 deletion lib/node_modules/@stdlib/repl/code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ base.coth,"var y = base.coth( 0.0 )\ny = base.coth( -0.0 )\ny = base.coth( 2.0 )
base.covercos,"var y = base.covercos( 3.14 )\ny = base.covercos( -4.2 )\ny = base.covercos( -4.6 )\ny = base.covercos( 9.5 )\ny = base.covercos( -0.0 )\n"
base.coversin,"var y = base.coversin( 3.14 )\ny = base.coversin( -4.2 )\ny = base.coversin( -4.6 )\ny = base.coversin( 9.5 )\ny = base.coversin( -0.0 )\n"
base.cphase,"var phi = base.cphase( new Complex128( 5.0, 3.0 ) )\n"
base.cpolar,"var out = base.cpolar( 5.0, 3.0 )\nout = new Float64Array( 2 );\nvar v = base.cpolar( out, 5.0, 3.0 )\nvar bool = ( v === out )\n"
base.cpolar,"var out = base.cpolar( new Complex128( 5.0, 3.0 ) )\n"
base.cpolar.assign,"var out = new Float64Array( 2 );\nvar v = base.cpolar.assign( new Complex128( 5.0, 3.0 ), out, 1, 0 )\nvar bool = ( v === out )\n"
base.cround,"var v = base.cround( new Complex128( 5.5, 3.3 ) )\nvar re = real( v )\nvar im = imag( v )\n"
base.croundn,"var out = base.croundn( 5.555, -3.336, -2 )\nout = new Float64Array( 2 );\nvar v = base.croundn( out, 5.555, -3.336, -2 )\nvar bool = ( v === out )\n"
base.csch,"var y = base.csch( +0.0 )\nvar y = base.csch( -0.0 )\nvar y = base.csch( +Infinity )\nvar y = base.csch( -Infinity )\ny = base.csch( 2.0 )\ny = base.csch( -2.0 )\ny = base.csch( NaN )\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/code-blocks/data/data.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions lib/node_modules/@stdlib/repl/help/data/data.csv

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/help/data/data.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion lib/node_modules/@stdlib/repl/info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ base.coth,"\nbase.coth( x:number )\n Computes the hyperbolic cotangent of a n
base.covercos,"\nbase.covercos( x:number )\n Computes the coversed cosine.\n"
base.coversin,"\nbase.coversin( x:number )\n Computes the coversed sine.\n"
base.cphase,"\nbase.cphase( z:Complex128 )\n Computes the argument of a double-precision complex floating-point number\n in radians.\n"
base.cpolar,"\nbase.cpolar( [out:Array|TypedArray|Object,] re:number, im:number )\n Returns the absolute value and phase of a complex number.\n"
base.cpolar,"\nbase.cpolar( z:Complex128 )\n Returns the absolute value and phase of a double-precision complex\n floating-point number.\n"
base.cpolar.assign,"\nbase.cpolar.assign( z:Complex128, out:Array|TypedArray|Object, stride:integer, \n offset:integer )\n Returns the absolute value and phase of a double-precision complex\n floating-point number and assigns results to a provided output array.\n"
base.cround,"\nbase.cround( z:Complex128 )\n Rounds each component of a double-precision complex floating-point number\n to the nearest integer.\n"
base.croundn,"\nbase.croundn( [out:Array|TypedArray|Object,] re:number, im:number, n:integer )\n Rounds a complex number to the nearest multiple of `10^n`.\n"
base.csch,"\nbase.csch( x:number )\n Computes the hyperbolic cosecant of a number.\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/info/data/data.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion lib/node_modules/@stdlib/repl/signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ base.coth,"base.coth( x )"
base.covercos,"base.covercos( x )"
base.coversin,"base.coversin( x )"
base.cphase,"base.cphase( z )"
base.cpolar,"base.cpolar( [out,] re, im )"
base.cpolar,"base.cpolar( z )"
base.cpolar.assign,"base.cpolar.assign( z, out, stride, offset )"
base.cround,"base.cround( z )"
base.croundn,"base.croundn( [out,] re, im, n )"
base.csch,"base.csch( x )"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/signature/data/data.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion lib/node_modules/@stdlib/repl/typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ base.coth,"base.coth( x:number )"
base.covercos,"base.covercos( x:number )"
base.coversin,"base.coversin( x:number )"
base.cphase,"base.cphase( z:Complex128 )"
base.cpolar,"base.cpolar( [out:Array|TypedArray|Object,] re:number, im:number )"
base.cpolar,"base.cpolar( z:Complex128 )"
base.cpolar.assign,"base.cpolar.assign( z:Complex128, out:Array|TypedArray|Object, stride:integer, offset:integer )"
base.cround,"base.cround( z:Complex128 )"
base.croundn,"base.croundn( [out:Array|TypedArray|Object,] re:number, im:number, n:integer )"
base.csch,"base.csch( x:number )"
Expand Down

Large diffs are not rendered by default.

0 comments on commit 0d296d1

Please sign in to comment.