Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update REPL namespace #1069

Merged
merged 1 commit into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/node_modules/@stdlib/repl/code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ base.cbrtf,"var y = base.cbrtf( 64.0 )\ny = base.cbrtf( 27.0 )\ny = base.cbrtf(
base.cceil,"var v = base.cceil( new Complex128( -1.5, 2.5 ) )\nvar re = real( v )\nvar im = imag( v )\n"
base.cceilf,"var v = base.cceilf( new Complex64( -1.5, 2.5 ) )\nvar re = real( v )\nvar im = imag( v )\n"
base.cceiln,"var out = base.cceiln( 5.555, -3.333, -2 )\nout = new Float64Array( 2 );\nvar v = base.cceiln( out, 5.555, -3.333, -2 )\nvar bool = ( v === out )\n"
base.ccis,"var y = base.ccis( 0.0, 0.0 )\nvar y = base.ccis( 1.0, 0.0 )\nvar out = new Float64Array( 2 );\nvar v = base.ccis( out, 1.0, 0.0 )\nvar bool = ( v === out )\n"
base.ccis,"var y = base.ccis( new Complex128( 0.0, 0.0 ) )\nvar re = real( y )\nvar im = imag( y )\ny = base.ccis( new Complex128( 1.0, 0.0 ) )\nre = real( y )\nim = imag( y )\n"
base.cdiv,"var z1 = new Complex128( -13.0, -1.0 )\nvar z2 = new Complex128( -2.0, 1.0 )\nvar y = base.cdiv( z1, z2 )\nvar re = real( y )\nvar im = imag( y )\n"
base.ceil,"var y = base.ceil( 3.14 )\ny = base.ceil( -4.2 )\ny = base.ceil( -4.6 )\ny = base.ceil( 9.5 )\ny = base.ceil( -0.0 )\n"
base.ceil2,"var y = base.ceil2( 3.14 )\ny = base.ceil2( -4.2 )\ny = base.ceil2( -4.6 )\ny = base.ceil2( 9.5 )\ny = base.ceil2( 13.0 )\ny = base.ceil2( -13.0 )\ny = base.ceil2( -0.0 )\n"
Expand All @@ -127,7 +127,7 @@ base.cfloor,"var v = base.cfloor( new Complex128( 5.5, 3.3 ) )\nvar re = real( v
base.cfloorn,"var out = base.cfloorn( 5.555, -3.333, -2 )\nout = new Float64Array( 2 );\nvar v = base.cfloorn( out, 5.555, -3.333, -2 )\nvar bool = ( v === out )\n"
base.cidentity,"var v = base.cidentity( new Complex128( -1.0, 2.0 ) )\nvar re = real( v )\nvar img = imag( v )\n"
base.cidentityf,"var v = base.cidentityf( new Complex64( -1.0, 2.0 ) )\nvar re = real( v )\nvar img = imag( v )\n"
base.cinv,"var y = base.cinv( 2.0, 4.0 )\nvar out = new Float64Array( 2 );\nvar v = base.cinv( out, 2.0, 4.0 )\nvar bool = ( v === out )\n"
base.cinv,"var v = base.cinv( new Complex128( 2.0, 4.0 ) )\nvar re = real( v )\nvar im = imag( v )\n"
base.clamp,"var y = base.clamp( 3.14, 0.0, 5.0 )\ny = base.clamp( -3.14, 0.0, 5.0 )\ny = base.clamp( 3.14, 0.0, 3.0 )\ny = base.clamp( -0.0, 0.0, 5.0 )\ny = base.clamp( 0.0, -3.14, -0.0 )\ny = base.clamp( NaN, 0.0, 5.0 )\n"
base.clampf,"var y = base.clampf( 3.14, 0.0, 5.0 )\ny = base.clampf( -3.14, 0.0, 5.0 )\ny = base.clampf( 3.14, 0.0, 3.0 )\ny = base.clampf( -0.0, 0.0, 5.0 )\ny = base.clampf( 0.0, -3.14, -0.0 )\ny = base.clampf( NaN, 0.0, 5.0 )\n"
base.cmul,"var z1 = new Complex128( 5.0, 3.0 )\nvar z2 = new Complex128( -2.0, 1.0 )\nvar out = base.cmul( z1, z2 )\nvar re = real( out )\nvar im = imag( out )\n"
Expand Down Expand Up @@ -2710,6 +2710,7 @@ hasUTF16SurrogatePairAt,"var out = hasUTF16SurrogatePairAt( '🌷', 0 )\nout = h
hasWeakMapSupport,"var bool = hasWeakMapSupport()\n"
hasWeakSetSupport,"var bool = hasWeakSetSupport()\n"
hasWebAssemblySupport,"var bool = hasWebAssemblySupport()\n"
headercase,"var out = headercase( 'Hello World!' )\nout = headercase( 'beep boop' )\n"
HERNDON_VENUS_SEMIDIAMETERS,"var d = HERNDON_VENUS_SEMIDIAMETERS()\n"
homedir,"var home = homedir()\n"
HOURS_IN_DAY,"var days = 3.14;\nvar hrs = days * HOURS_IN_DAY\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.

4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/repl/help/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ base.cbrtf,"\nbase.cbrtf( x )\n Computes the cube root of a single-precision
base.cceil,"\nbase.cceil( z )\n Rounds a double-precision complex floating-point number toward positive\n infinity.\n\n Parameters\n ----------\n z: Complex128\n Complex number.\n\n Returns\n -------\n out: Complex128\n Result.\n\n Examples\n --------\n > var v = base.cceil( new Complex128( -1.5, 2.5 ) )\n <Complex128>\n > var re = real( v )\n -1.0\n > var im = imag( v )\n 3.0\n\n See Also\n --------\n base.cceiln, base.cfloor, base.cround\n"
base.cceilf,"\nbase.cceilf( z )\n Rounds a single-precision complex floating-point number toward positive\n infinity.\n\n Parameters\n ----------\n z: Complex64\n Complex number.\n\n Returns\n -------\n out: Complex64\n Result.\n\n Examples\n --------\n > var v = base.cceilf( new Complex64( -1.5, 2.5 ) )\n <Complex64>\n > var re = real( v )\n -1.0\n > var im = imag( v )\n 3.0\n\n See Also\n --------\n base.cceil\n"
base.cceiln,"\nbase.cceiln( [out,] re, im, n )\n Rounds a complex number to the nearest multiple of `10^n` toward positive\n infinity.\n\n Parameters\n ----------\n out: Array|TypedArray|Object (optional)\n Output array.\n\n re: number\n Real component.\n\n im: number\n Imaginary component.\n\n n: integer\n Integer power of 10.\n\n Returns\n -------\n out: Array|TypedArray|Object\n Real and imaginary components.\n\n Examples\n --------\n > var out = base.cceiln( 5.555, -3.333, -2 )\n [ 5.56, -3.33 ]\n\n // Provide an output array:\n > out = new Float64Array( 2 );\n > var v = base.cceiln( out, 5.555, -3.333, -2 )\n <Float64Array>[ 5.56, -3.33 ]\n > var bool = ( v === out )\n true\n\n See Also\n --------\n base.cceil, base.cfloorn, base.croundn\n"
base.ccis,"\nbase.ccis( [out,] re, im )\n Computes the cis function of a complex number.\n\n Parameters\n ----------\n out: Array|TypedArray|Object (optional)\n Output array.\n\n re: number\n Real component.\n\n im: number\n Imaginary component.\n\n Returns\n -------\n out: Array|TypedArray|Object\n Real and imaginary components.\n\n Examples\n --------\n > var y = base.ccis( 0.0, 0.0 )\n [ 1.0, 0.0 ]\n\n > var y = base.ccis( 1.0, 0.0 )\n [ ~0.540, ~0.841 ]\n\n > var out = new Float64Array( 2 );\n > var v = base.ccis( out, 1.0, 0.0 )\n <Float64Array>[ ~0.540, ~0.841 ]\n > var bool = ( v === out )\n true\n\n"
base.ccis,"\nbase.ccis( z )\n Evaluates the cis function for a double-precision complex floating-point\n number.\n\n Parameters\n ----------\n z: Complex128\n Complex number.\n\n Returns\n -------\n out: Complex128\n Complex number.\n\n Examples\n --------\n > var y = base.ccis( new Complex128( 0.0, 0.0 ) )\n <Complex128>\n > var re = real( y )\n 1.0\n > var im = imag( y )\n 0.0\n > y = base.ccis( new Complex128( 1.0, 0.0 ) )\n <Complex128>\n > re = real( y )\n ~0.540\n > im = imag( y )\n ~0.841\n\n"
base.cdiv,"\nbase.cdiv( z1, z2 )\n Divides two double-precision complex floating-point numbers.\n\n Parameters\n ----------\n z1: Complex128\n Complex number.\n\n z2: Complex128\n Complex number.\n\n Returns\n -------\n out: Complex128\n Result.\n\n Examples\n --------\n > var z1 = new Complex128( -13.0, -1.0 )\n <Complex128>\n > var z2 = new Complex128( -2.0, 1.0 )\n <Complex128>\n > var y = base.cdiv( z1, z2 )\n <Complex128>\n > var re = real( y )\n 5.0\n > var im = imag( y )\n 3.0\n\n See Also\n --------\n base.cadd, base.cmul, base.csub\n"
base.ceil,"\nbase.ceil( x )\n Rounds a double-precision floating-point number toward positive infinity.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Rounded value.\n\n Examples\n --------\n > var y = base.ceil( 3.14 )\n 4.0\n > y = base.ceil( -4.2 )\n -4.0\n > y = base.ceil( -4.6 )\n -4.0\n > y = base.ceil( 9.5 )\n 10.0\n > y = base.ceil( -0.0 )\n -0.0\n\n See Also\n --------\n base.ceiln, base.floor, base.round\n"
base.ceil2,"\nbase.ceil2( x )\n Rounds a numeric value to the nearest power of two toward positive infinity.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Rounded value.\n\n Examples\n --------\n > var y = base.ceil2( 3.14 )\n 4.0\n > y = base.ceil2( -4.2 )\n -4.0\n > y = base.ceil2( -4.6 )\n -4.0\n > y = base.ceil2( 9.5 )\n 16.0\n > y = base.ceil2( 13.0 )\n 16.0\n > y = base.ceil2( -13.0 )\n -8.0\n > y = base.ceil2( -0.0 )\n -0.0\n\n See Also\n --------\n base.ceil, base.ceil10, base.floor2, base.round2\n"
Expand All @@ -127,7 +127,7 @@ base.cfloor,"\nbase.cfloor( z )\n Rounds a double-precision complex floating-
base.cfloorn,"\nbase.cfloorn( [out,] re, im, n )\n Rounds a complex number to the nearest multiple of `10^n` toward negative\n infinity.\n\n Parameters\n ----------\n out: Array|TypedArray|Object (optional)\n Output array.\n\n re: number\n Real component.\n\n im: number\n Imaginary component.\n\n n: integer\n Integer power of 10.\n\n Returns\n -------\n out: Array|TypedArray|Object\n Real and imaginary components.\n\n Examples\n --------\n > var out = base.cfloorn( 5.555, -3.333, -2 )\n [ 5.55, -3.34 ]\n\n // Provide an output array:\n > out = new Float64Array( 2 );\n > var v = base.cfloorn( out, 5.555, -3.333, -2 )\n <Float64Array>[ 5.55, -3.34 ]\n > var bool = ( v === out )\n true\n\n See Also\n --------\n base.cceiln, base.cfloor, base.croundn\n"
base.cidentity,"\nbase.cidentity( z )\n Evaluates the identity function for a double-precision complex floating-\n point number.\n\n Parameters\n ----------\n z: Complex128\n Input value.\n\n Returns\n -------\n v: Complex128\n Input value.\n\n Examples\n --------\n > var v = base.cidentity( new Complex128( -1.0, 2.0 ) )\n <Complex128>\n > var re = real( v )\n -1.0\n > var img = imag( v )\n 2.0\n\n See Also\n --------\n base.cidentityf, base.identity\n"
base.cidentityf,"\nbase.cidentityf( z )\n Evaluates the identity function for a single-precision complex floating-\n point number.\n\n Parameters\n ----------\n z: Complex64\n Input value.\n\n Returns\n -------\n v: Complex64\n Input value.\n\n Examples\n --------\n > var v = base.cidentityf( new Complex64( -1.0, 2.0 ) )\n <Complex64>\n > var re = real( v )\n -1.0\n > var img = imag( v )\n 2.0\n\n See Also\n --------\n base.cidentity, base.identityf\n"
base.cinv,"\nbase.cinv( [out,] re, im )\n Computes the inverse of a complex number.\n\n Parameters\n ----------\n out: Array|TypedArray|Object (optional)\n Output array.\n\n re: number\n Real component.\n\n im: number\n Imaginary component.\n\n Returns\n -------\n out: Array|TypedArray|Object\n Real and imaginary components.\n\n Examples\n --------\n > var y = base.cinv( 2.0, 4.0 )\n [ 0.1, -0.2 ]\n\n > var out = new Float64Array( 2 );\n > var v = base.cinv( out, 2.0, 4.0 )\n <Float64Array>[ 0.1, -0.2 ]\n > var bool = ( v === out )\n true\n\n See Also\n --------\n base.cdiv\n"
base.cinv,"\nbase.cinv( z )\n Computes the inverse of a double-precision complex floating-point number.\n\n Parameters\n ----------\n z: Complex128\n Complex number.\n\n Returns\n -------\n out: Complex128\n Result.\n\n Examples\n --------\n > var v = base.cinv( new Complex128( 2.0, 4.0 ) )\n <Complex128>\n > var re = real( v )\n 0.1\n > var im = imag( v )\n -0.2\n\n See Also\n --------\n base.cdiv\n"
base.clamp,"\nbase.clamp( v, min, max )\n Restricts a double-precision floating-point number to a specified range.\n\n If provided `NaN` for any argument, the function returns `NaN`.\n\n Parameters\n ----------\n v: number\n Value to restrict.\n\n min: number\n Minimum value.\n\n max: number\n Maximum value.\n\n Returns\n -------\n y: number\n Restricted value.\n\n Examples\n --------\n > var y = base.clamp( 3.14, 0.0, 5.0 )\n 3.14\n > y = base.clamp( -3.14, 0.0, 5.0 )\n 0.0\n > y = base.clamp( 3.14, 0.0, 3.0 )\n 3.0\n > y = base.clamp( -0.0, 0.0, 5.0 )\n 0.0\n > y = base.clamp( 0.0, -3.14, -0.0 )\n -0.0\n > y = base.clamp( NaN, 0.0, 5.0 )\n NaN\n\n See Also\n --------\n base.clampf, base.wrap\n"
base.clampf,"\nbase.clampf( v, min, max )\n Restricts a single-precision floating-point number to a specified range.\n\n If provided `NaN` for any argument, the function returns `NaN`.\n\n Parameters\n ----------\n v: number\n Value to restrict.\n\n min: number\n Minimum value.\n\n max: number\n Maximum value.\n\n Returns\n -------\n y: number\n Restricted value.\n\n Examples\n --------\n > var y = base.clampf( 3.14, 0.0, 5.0 )\n 3.14\n > y = base.clampf( -3.14, 0.0, 5.0 )\n 0.0\n > y = base.clampf( 3.14, 0.0, 3.0 )\n 3.0\n > y = base.clampf( -0.0, 0.0, 5.0 )\n 0.0\n > y = base.clampf( 0.0, -3.14, -0.0 )\n -0.0\n > y = base.clampf( NaN, 0.0, 5.0 )\n NaN\n\n See Also\n --------\n base.clamp\n"
base.cmul,"\nbase.cmul( z1, z2 )\n Multiplies two double-precision complex floating-point numbers.\n\n Parameters\n ----------\n z1: Complex128\n Complex number.\n\n z2: Complex128\n Complex number.\n\n Returns\n -------\n out: Complex128\n Result.\n\n Examples\n --------\n > var z1 = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var z2 = new Complex128( -2.0, 1.0 )\n <Complex128>\n > var out = base.cmul( z1, z2 )\n <Complex128>\n > var re = real( out )\n -13.0\n > var im = imag( out )\n -1.0\n\n See Also\n --------\n base.cadd, base.cdiv, base.csub\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/help/data/data.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions lib/node_modules/@stdlib/repl/info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ base.cbrtf,"\nbase.cbrtf( x:number )\n Computes the cube root of a single-pre
base.cceil,"\nbase.cceil( z:Complex128 )\n Rounds a double-precision complex floating-point number toward positive\n infinity.\n"
base.cceilf,"\nbase.cceilf( z:Complex64 )\n Rounds a single-precision complex floating-point number toward positive\n infinity.\n"
base.cceiln,"\nbase.cceiln( [out:Array|TypedArray|Object,] re:number, im:number, n:integer )\n Rounds a complex number to the nearest multiple of `10^n` toward positive\n infinity.\n"
base.ccis,"\nbase.ccis( [out:Array|TypedArray|Object,] re:number, im:number )\n Computes the cis function of a complex number.\n"
base.ccis,"\nbase.ccis( z:Complex128 )\n Evaluates the cis function for a double-precision complex floating-point\n number.\n"
base.cdiv,"\nbase.cdiv( z1:Complex128, z2:Complex128 )\n Divides two double-precision complex floating-point numbers.\n"
base.ceil,"\nbase.ceil( x:number )\n Rounds a double-precision floating-point number toward positive infinity.\n"
base.ceil2,"\nbase.ceil2( x:number )\n Rounds a numeric value to the nearest power of two toward positive infinity.\n"
Expand All @@ -127,7 +127,7 @@ base.cfloor,"\nbase.cfloor( z:Complex128 )\n Rounds a double-precision comple
base.cfloorn,"\nbase.cfloorn( [out:Array|TypedArray|Object,] re:number, im:number, n:integer )\n Rounds a complex number to the nearest multiple of `10^n` toward negative\n infinity.\n"
base.cidentity,"\nbase.cidentity( z:Complex128 )\n Evaluates the identity function for a double-precision complex floating-\n point number.\n"
base.cidentityf,"\nbase.cidentityf( z:Complex64 )\n Evaluates the identity function for a single-precision complex floating-\n point number.\n"
base.cinv,"\nbase.cinv( [out:Array|TypedArray|Object,] re:number, im:number )\n Computes the inverse of a complex number.\n"
base.cinv,"\nbase.cinv( z:Complex128 )\n Computes the inverse of a double-precision complex floating-point number.\n"
base.clamp,"\nbase.clamp( v:number, min:number, max:number )\n Restricts a double-precision floating-point number to a specified range.\n"
base.clampf,"\nbase.clampf( v:number, min:number, max:number )\n Restricts a single-precision floating-point number to a specified range.\n"
base.cmul,"\nbase.cmul( z1:Complex128, z2:Complex128 )\n Multiplies two double-precision complex floating-point numbers.\n"
Expand Down Expand Up @@ -2710,6 +2710,7 @@ hasUTF16SurrogatePairAt,"\nhasUTF16SurrogatePairAt( str:string, pos:integer )\n
hasWeakMapSupport,"\nhasWeakMapSupport()\n Tests for native `WeakMap` support.\n"
hasWeakSetSupport,"\nhasWeakSetSupport()\n Tests for native `WeakSet` support.\n"
hasWebAssemblySupport,"\nhasWebAssemblySupport()\n Tests for native WebAssembly support.\n"
headercase,"\nheadercase( str:string )\n Converts a string to HTTP header case.\n"
HERNDON_VENUS_SEMIDIAMETERS,"\nHERNDON_VENUS_SEMIDIAMETERS()\n Returns fifteen observations of the vertical semidiameter of Venus, made by\n Lieutenant Herndon, with the meridian circle at Washington, in the year\n 1846.\n"
homedir,"\nhomedir()\n Returns the current user's home directory.\n"
HOURS_IN_DAY,"\nHOURS_IN_DAY\n Number of hours in a day.\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.

5 changes: 3 additions & 2 deletions lib/node_modules/@stdlib/repl/signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ base.cbrtf,"base.cbrtf( x )"
base.cceil,"base.cceil( z )"
base.cceilf,"base.cceilf( z )"
base.cceiln,"base.cceiln( [out,] re, im, n )"
base.ccis,"base.ccis( [out,] re, im )"
base.ccis,"base.ccis( z )"
base.cdiv,"base.cdiv( z1, z2 )"
base.ceil,"base.ceil( x )"
base.ceil2,"base.ceil2( x )"
Expand All @@ -127,7 +127,7 @@ base.cfloor,"base.cfloor( z )"
base.cfloorn,"base.cfloorn( [out,] re, im, n )"
base.cidentity,"base.cidentity( z )"
base.cidentityf,"base.cidentityf( z )"
base.cinv,"base.cinv( [out,] re, im )"
base.cinv,"base.cinv( z )"
base.clamp,"base.clamp( v, min, max )"
base.clampf,"base.clampf( v, min, max )"
base.cmul,"base.cmul( z1, z2 )"
Expand Down Expand Up @@ -2735,6 +2735,7 @@ hasUTF16SurrogatePairAt,"hasUTF16SurrogatePairAt( str, pos )"
hasWeakMapSupport,"hasWeakMapSupport()"
hasWeakSetSupport,"hasWeakSetSupport()"
hasWebAssemblySupport,"hasWebAssemblySupport()"
headercase,"headercase( str )"
HERNDON_VENUS_SEMIDIAMETERS,"HERNDON_VENUS_SEMIDIAMETERS()"
homedir,"homedir()"
HOURS_IN_DAY,"HOURS_IN_DAY"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/signature/data/data.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions lib/node_modules/@stdlib/repl/typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ base.cbrtf,"base.cbrtf( x:number )"
base.cceil,"base.cceil( z:Complex128 )"
base.cceilf,"base.cceilf( z:Complex64 )"
base.cceiln,"base.cceiln( [out:Array|TypedArray|Object,] re:number, im:number, n:integer )"
base.ccis,"base.ccis( [out:Array|TypedArray|Object,] re:number, im:number )"
base.ccis,"base.ccis( z:Complex128 )"
base.cdiv,"base.cdiv( z1:Complex128, z2:Complex128 )"
base.ceil,"base.ceil( x:number )"
base.ceil2,"base.ceil2( x:number )"
Expand All @@ -127,7 +127,7 @@ base.cfloor,"base.cfloor( z:Complex128 )"
base.cfloorn,"base.cfloorn( [out:Array|TypedArray|Object,] re:number, im:number, n:integer )"
base.cidentity,"base.cidentity( z:Complex128 )"
base.cidentityf,"base.cidentityf( z:Complex64 )"
base.cinv,"base.cinv( [out:Array|TypedArray|Object,] re:number, im:number )"
base.cinv,"base.cinv( z:Complex128 )"
base.clamp,"base.clamp( v:number, min:number, max:number )"
base.clampf,"base.clampf( v:number, min:number, max:number )"
base.cmul,"base.cmul( z1:Complex128, z2:Complex128 )"
Expand Down Expand Up @@ -2735,6 +2735,7 @@ hasUTF16SurrogatePairAt,"hasUTF16SurrogatePairAt( str:string, pos:integer )"
hasWeakMapSupport,"hasWeakMapSupport()"
hasWeakSetSupport,"hasWeakSetSupport()"
hasWebAssemblySupport,"hasWebAssemblySupport()"
headercase,"headercase( str:string )"
HERNDON_VENUS_SEMIDIAMETERS,"HERNDON_VENUS_SEMIDIAMETERS()"
homedir,"homedir()"
HOURS_IN_DAY,"HOURS_IN_DAY"
Expand Down

Large diffs are not rendered by default.

Loading