Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jan 27, 2024
1 parent f9c2497 commit 255088f
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 10 deletions.
1 change: 1 addition & 0 deletions code-blocks/data/data.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
abs,"var y = abs( -1.0 )\nvar x = new Float64Array( [ -1.0, -2.0 ] );\ny = abs( x )\nx = [ -1.0, -2.0 ];\ny = abs( x )\nx = array( [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ] );\ny = abs( x )\ny.get( 0, 1 )\n"
abs.assign,"var x = new Float64Array( [ -1.0, -2.0 ] );\nvar y = new Float64Array( x.length );\nvar out = abs.assign( x, y )\nvar bool = ( out === y )\nx = [ -1.0, -2.0 ];\ny = [ 0.0, 0.0 ];\nout = abs.assign( x, y )\nbool = ( out === y )\nx = array( [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ] );\ny = array( [ [ 0.0, 0.0 ], [ 0.0, 0.0 ] ] );\nout = abs.assign( x, y )\nout.get( 0, 1 )\nbool = ( out === y )\n"
acartesianPower,"var x = [ 1, 2 ];\nvar out = acartesianPower( x, 2 )\n"
acartesianProduct,"var x1 = [ 1, 2 ];\nvar x2 = [ 3, 4 ];\nvar out = acartesianProduct( x1, x2 )\n"
acartesianSquare,"var out = acartesianSquare( [ 1, 2 ] )\n"
acronym,"var out = acronym( 'the quick brown fox' )\nout = acronym( 'Hard-boiled eggs' )\n"
Expand Down
2 changes: 1 addition & 1 deletion code-blocks/data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/index.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions help/data/data.csv

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion help/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions info/data/data.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
abs,"\nabs( x:ndarray|ArrayLikeObject|number[, options:Object] )\n Computes the absolute value.\n"
abs.assign,"\nabs.assign( x:ndarray|ArrayLikeObject, y:ndarray|ArrayLikeObject )\n Computes the absolute value and assigns results to a provided output array.\n"
acartesianPower,"\nacartesianPower( x:ArrayLikeObject, n:integer )\n Returns the Cartesian power.\n"
acartesianProduct,"\nacartesianProduct( x1:ArrayLikeObject, x2:ArrayLikeObject )\n Returns the Cartesian product.\n"
acartesianSquare,"\nacartesianSquare( x:ArrayLikeObject )\n Returns the Cartesian square.\n"
acronym,"\nacronym( str:string[, options:Object] )\n Generates an acronym for a given string.\n"
Expand Down
2 changes: 1 addition & 1 deletion info/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions signature/data/data.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
abs,"abs( x[, options] )"
abs.assign,"abs.assign( x, y )"
acartesianPower,"acartesianPower( x, n )"
acartesianProduct,"acartesianProduct( x1, x2 )"
acartesianSquare,"acartesianSquare( x )"
acronym,"acronym( str[, options] )"
Expand Down
2 changes: 1 addition & 1 deletion signature/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions typed-signature/data/data.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
abs,"abs( x:ndarray|ArrayLikeObject|number[, options:Object] )"
abs.assign,"abs.assign( x:ndarray|ArrayLikeObject, y:ndarray|ArrayLikeObject )"
acartesianPower,"acartesianPower( x:ArrayLikeObject, n:integer )"
acartesianProduct,"acartesianProduct( x1:ArrayLikeObject, x2:ArrayLikeObject )"
acartesianSquare,"acartesianSquare( x:ArrayLikeObject )"
acronym,"acronym( str:string[, options:Object] )"
Expand Down
2 changes: 1 addition & 1 deletion typed-signature/data/data.json

Large diffs are not rendered by default.

0 comments on commit 255088f

Please sign in to comment.