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 Jun 7, 2024
1 parent 5718a55 commit 60c5fa3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-06-06)
## Unreleased (2024-06-07)

<section class="packages">

Expand Down Expand Up @@ -255,6 +255,7 @@ A total of 10 people contributed to this release. Thank you to the following con

<details>

- [`f85ed2a`](https://github.com/stdlib-js/stdlib/commit/f85ed2aafc393cfbac360ad14b97af0ee28d450b) - **docs:** update REPL namespace documentation [(#2313)](https://github.com/stdlib-js/stdlib/pull/2313) _(by stdlib-bot, Athan Reines)_
- [`f10aaf2`](https://github.com/stdlib-js/stdlib/commit/f10aaf243f4873488bf04be4bad5c3d256415a41) - **docs:** update REPL namespace documentation [(#2311)](https://github.com/stdlib-js/stdlib/pull/2311) _(by stdlib-bot, Athan Reines)_
- [`34ef42e`](https://github.com/stdlib-js/stdlib/commit/34ef42e798ec33e1f3a62a15a460dd46ae7c693c) - **docs:** update REPL namespace documentation [(#2246)](https://github.com/stdlib-js/stdlib/pull/2246) _(by stdlib-bot, Athan Reines)_
- [`e09eeb2`](https://github.com/stdlib-js/stdlib/commit/e09eeb231ec9800aa3e934f4d34bb6991a7afe81) - **fix:** update incorrect `isScrollable` constraints [(##2293)](#2293) _(by Snehil Shah)_
Expand Down
2 changes: 1 addition & 1 deletion help/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1641,7 +1641,7 @@ base.sliceNonReducedDimensions,"\nbase.sliceNonReducedDimensions( slice )\n R
base.sliceReducedDimensions,"\nbase.sliceReducedDimensions( slice )\n Returns a list of reduced dimensions in an un-normalized multi-slice.\n\n Parameters\n ----------\n slice: MultiSlice\n Input slice object.\n\n Returns\n -------\n out: Array<integer>\n Dimension indices.\n\n Examples\n --------\n > var s = new MultiSlice( 1, 3, null );\n > var out = base.sliceReducedDimensions( s )\n [ 0, 1 ]\n\n See Also\n --------\n base.sliceLength, base.sliceNonReducedDimensions, base.sliceShape\n"
base.sliceShape,"\nbase.sliceShape( slice )\n Returns the shape of a normalized multi-slice.\n\n Parameters\n ----------\n slice: MultiSlice\n Input normalized multi-slice object.\n\n Returns\n -------\n sh: Array<integer>\n Slice shape.\n\n Examples\n --------\n > var s = new Slice( 1, 10, 1 );\n > var ms = new MultiSlice( s, s );\n > base.sliceShape( ms )\n [ 9, 9 ]\n\n See Also\n --------\n base.sliceLength, base.sliceNonReducedDimensions, base.sliceReducedDimensions\n"
base.snakecase,"\nbase.snakecase( str )\n Converts a string to snake case.\n\n Parameters\n ----------\n str: string\n Input string.\n\n Returns\n -------\n out: string\n Snake-cased string.\n\n Examples\n --------\n > var out = base.snakecase( 'Hello World!' )\n 'hello_world'\n > out = base.snakecase( 'I am a tiny little teapot' )\n 'i_am_a_tiny_little_teapot'\n\n See Also\n --------\n base.camelcase, base.lowercase, base.stickycase, base.uppercase"
base.spence,"\nbase.spence( x )\n Evaluates Spences function, which is also known as the dilogarithm.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Function value.\n\n Examples\n --------\n > var y = base.spence( 3.0 )\n ~-1.437\n > y = base.spence( 0.0 )\n ~1.645\n > y = base.spence( -9.0 )\n NaN\n > y = base.spence( NaN )\n NaN\n\n"
base.spence,"\nbase.spence( x )\n Evaluates Spence's function, which is also known as the dilogarithm.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Function value.\n\n Examples\n --------\n > var y = base.spence( 3.0 )\n ~-1.437\n > y = base.spence( 0.0 )\n ~1.645\n > y = base.spence( -9.0 )\n NaN\n > y = base.spence( NaN )\n NaN\n\n"
base.sqrt,"\nbase.sqrt( x )\n Computes the principal square root of a double-precision floating-point\n number.\n\n For `x < 0`, the principal square root is not defined.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Principal square root.\n\n Examples\n --------\n > var y = base.sqrt( 4.0 )\n 2.0\n > y = base.sqrt( 9.0 )\n 3.0\n > y = base.sqrt( 0.0 )\n 0.0\n > y = base.sqrt( -4.0 )\n NaN\n > y = base.sqrt( NaN )\n NaN\n\n See Also\n --------\n base.cbrt, base.rsqrt\n"
base.sqrt1pm1,"\nbase.sqrt1pm1( x )\n Computes the principal square root of `1+x` minus one.\n\n This function is more accurate than the obvious approach for small `x`.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Square root of `1+x` minus one.\n\n Examples\n --------\n > var y = base.sqrt1pm1( 3.0 )\n 1.0\n > y = base.sqrt1pm1( 0.5 )\n ~0.225\n > y = base.sqrt1pm1( 0.02 )\n ~0.01\n > y = base.sqrt1pm1( -0.5 )\n ~-0.293\n > y = base.sqrt1pm1( -1.1 )\n NaN\n > y = base.sqrt1pm1( NaN )\n NaN\n\n See Also\n --------\n base.sqrt\n"
base.sqrtf,"\nbase.sqrtf( x )\n Computes the principal square root of a single-precision floating-point\n number.\n\n For `x < 0`, the principal square root is not defined.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Principal square root.\n\n Examples\n --------\n > var y = base.sqrtf( 4.0 )\n 2.0\n > y = base.sqrtf( 9.0 )\n 3.0\n > y = base.sqrtf( 0.0 )\n 0.0\n > y = base.sqrtf( -4.0 )\n NaN\n > y = base.sqrtf( NaN )\n NaN\n\n See Also\n --------\n base.cbrtf, base.rsqrtf, base.sqrt\n"
Expand Down
2 changes: 1 addition & 1 deletion help/data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1641,7 +1641,7 @@ base.sliceNonReducedDimensions,"\nbase.sliceNonReducedDimensions( slice:MultiSli
base.sliceReducedDimensions,"\nbase.sliceReducedDimensions( slice:MultiSlice )\n Returns a list of reduced dimensions in an un-normalized multi-slice.\n"
base.sliceShape,"\nbase.sliceShape( slice:MultiSlice )\n Returns the shape of a normalized multi-slice.\n"
base.snakecase,"\nbase.snakecase( str:string )\n Converts a string to snake case.\n"
base.spence,"\nbase.spence( x:number )\n Evaluates Spences function, which is also known as the dilogarithm.\n"
base.spence,"\nbase.spence( x:number )\n Evaluates Spence's function, which is also known as the dilogarithm.\n"
base.sqrt,"\nbase.sqrt( x:number )\n Computes the principal square root of a double-precision floating-point\n number.\n"
base.sqrt1pm1,"\nbase.sqrt1pm1( x:number )\n Computes the principal square root of `1+x` minus one.\n"
base.sqrtf,"\nbase.sqrtf( x:number )\n Computes the principal square root of a single-precision floating-point\n number.\n"
Expand Down
2 changes: 1 addition & 1 deletion info/data/data.json

Large diffs are not rendered by default.

0 comments on commit 60c5fa3

Please sign in to comment.