Skip to content

Commit 78ce19b

Browse files
committed
Auto-generated commit
1 parent 599456c commit 78ce19b

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-06-06)
7+
## Unreleased (2025-06-07)
88

99
<section class="features">
1010

@@ -36,6 +36,7 @@
3636

3737
<details>
3838

39+
- [`1c87942`](https://github.com/stdlib-js/stdlib/commit/1c87942c8d2a2597a8f710c1d139ff2120576cc7) - **docs:** update REPL namespace documentation [(#7242)](https://github.com/stdlib-js/stdlib/pull/7242) _(by stdlib-bot)_
3940
- [`7d29148`](https://github.com/stdlib-js/stdlib/commit/7d29148daa701a3113e72a901fd5096d2a5da4d1) - **docs:** update REPL namespace documentation [(#7232)](https://github.com/stdlib-js/stdlib/pull/7232) _(by stdlib-bot)_
4041
- [`6665951`](https://github.com/stdlib-js/stdlib/commit/66659512747686f55bd8e8c0420f8a1d8131a221) - **docs:** update REPL namespace documentation [(#7221)](https://github.com/stdlib-js/stdlib/pull/7221) _(by stdlib-bot)_
4142
- [`586b528`](https://github.com/stdlib-js/stdlib/commit/586b5281dac7ad93a3fce2c87d45386c77e71f45) - **docs:** update REPL namespace documentation [(#7151)](https://github.com/stdlib-js/stdlib/pull/7151) _(by stdlib-bot)_

data/data.csv

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,12 @@ base.acartesianProduct,"var x1 = [ 1, 2 ];\nvar x2 = [ 3, 4 ];\nvar out = base.a
9898
base.acartesianSquare,"var x = [ 1, 2 ];\nvar out = base.acartesianSquare( x )\n"
9999
base.acos,"var y = base.acos( 1.0 )\ny = base.acos( 0.707 )\ny = base.acos( NaN )\n"
100100
base.acosd,"var y = base.acosd( 0.0 )\ny = base.acosd( PI/6.0 )\ny = base.acosd( NaN )\n"
101+
base.acosdf,"var y = base.acosdf( 0.0 )\ny = base.acosdf( FLOAT32_PI / 6.0 )\ny = base.acosdf( NaN )\n"
101102
base.acosf,"var y = base.acosf( 1.0 )\ny = base.acosf( 0.707 )\ny = base.acosf( NaN )\n"
102103
base.acosh,"var y = base.acosh( 1.0 )\ny = base.acosh( 2.0 )\ny = base.acosh( NaN )\n"
103104
base.acot,"var y = base.acot( 2.0 )\ny = base.acot( 0.0 )\ny = base.acot( 0.5 )\ny = base.acot( 1.0 )\ny = base.acot( NaN )\n"
104105
base.acotd,"var y = base.acotd( 0.0 )\ny = base.acotd( PI/6.0 )\ny = base.acotd( NaN )\n"
106+
base.acotdf,"var y = base.acotdf( 0.0 )\ny = base.acotdf( FLOAT32_PI/6.0 )\ny = base.acotdf( NaN )\n"
105107
base.acotf,"var y = base.acotf( 2.0 )\ny = base.acotf( 0.0 )\ny = base.acotf( 0.5 )\ny = base.acotf( 1.0 )\ny = base.acotf( NaN )\n"
106108
base.acoth,"var y = base.acoth( 2.0 )\ny = base.acoth( 0.0 )\ny = base.acoth( 0.5 )\ny = base.acoth( 1.0 )\ny = base.acoth( NaN )\n"
107109
base.acovercos,"var y = base.acovercos( 1.5 )\ny = base.acovercos( -0.0 )\n"
@@ -243,6 +245,7 @@ base.cfloorn,"var v = base.cfloorn( new Complex128( 5.555, -3.333 ), -2 )\nvar r
243245
base.cidentity,"var v = base.cidentity( new Complex128( -1.0, 2.0 ) )\nvar re = real( v )\nvar img = imag( v )\n"
244246
base.cidentityf,"var v = base.cidentityf( new Complex64( -1.0, 2.0 ) )\nvar re = realf( v )\nvar img = imagf( v )\n"
245247
base.cinv,"var v = base.cinv( new Complex128( 2.0, 4.0 ) )\nvar re = real( v )\nvar im = imag( v )\n"
248+
base.cinvf,"var v = base.cinvf( new Complex64( 2.0, 4.0 ) )\nvar re = realf( v )\nvar im = imagf( v )\n"
246249
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"
247250
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"
248251
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"

data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)