Skip to content

Commit 65c7cf2

Browse files
committed
Auto-generated commit
1 parent 392628c commit 65c7cf2

6 files changed

Lines changed: 25 additions & 3 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

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

7-
## Unreleased (2026-06-22)
7+
## Unreleased (2026-07-03)
8+
9+
<section class="features">
10+
11+
### Features
12+
13+
- [`7fe03ab`](https://github.com/stdlib-js/stdlib/commit/7fe03ab3710db4701e1e77e8169ebf6f8dcb6236) - add float16 support in `array/base/assert/is-complex-typed-array` [(#13243)](https://github.com/stdlib-js/stdlib/pull/13243)
14+
15+
</section>
16+
17+
<!-- /.features -->
818

919
<section class="commits">
1020

1121
### Commits
1222

1323
<details>
1424

25+
- [`7fe03ab`](https://github.com/stdlib-js/stdlib/commit/7fe03ab3710db4701e1e77e8169ebf6f8dcb6236) - **feat:** add float16 support in `array/base/assert/is-complex-typed-array` [(#13243)](https://github.com/stdlib-js/stdlib/pull/13243) _(by Gururaj Gurram)_
1526
- [`394c99f`](https://github.com/stdlib-js/stdlib/commit/394c99ff634519d6219987acc2fd7bcca0399b55) - **docs:** add missing stub sections [(#11871)](https://github.com/stdlib-js/stdlib/pull/11871) _(by Philipp Burckhardt)_
1627
- [`b721461`](https://github.com/stdlib-js/stdlib/commit/b721461895b04dd66f0915c76347244a7cc56148) - **docs:** revert style changes _(by Athan Reines)_
1728
- [`3024bb3`](https://github.com/stdlib-js/stdlib/commit/3024bb37f70bf55295d9c4bf81107ff57c15ff8a) - **docs:** fix section comments and lint errors in `array` and `assert` READMEs _(by Philipp Burckhardt)_
@@ -26,9 +37,10 @@
2637

2738
### Contributors
2839

29-
A total of 2 people contributed to this release. Thank you to the following contributors:
40+
A total of 3 people contributed to this release. Thank you to the following contributors:
3041

3142
- Athan Reines
43+
- Gururaj Gurram
3244
- Philipp Burckhardt
3345

3446
</section>

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ var Int16Array = require( '@stdlib/array-int16' );
111111
var Uint16Array = require( '@stdlib/array-uint16' );
112112
var Int32Array = require( '@stdlib/array-int32' );
113113
var Uint32Array = require( '@stdlib/array-uint32' );
114+
var Float16Array = require( '@stdlib/array-float16' );
114115
var Float32Array = require( '@stdlib/array-float32' );
115116
var Float64Array = require( '@stdlib/array-float64' );
116117
var Complex128Array = require( '@stdlib/array-complex128' );
@@ -132,6 +133,9 @@ bool = isComplexTypedArray( new Float64Array( 10 ) );
132133
bool = isComplexTypedArray( new Float32Array( 10 ) );
133134
// returns false
134135

136+
bool = isComplexTypedArray( new Float16Array( 10 ) );
137+
// returns false
138+
135139
bool = isComplexTypedArray( new Int32Array( 10 ) );
136140
// returns false
137141

examples/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var Int16Array = require( '@stdlib/array-int16' );
2727
var Uint16Array = require( '@stdlib/array-uint16' );
2828
var Int32Array = require( '@stdlib/array-int32' );
2929
var Uint32Array = require( '@stdlib/array-uint32' );
30+
var Float16Array = require( '@stdlib/array-float16' );
3031
var Float32Array = require( '@stdlib/array-float32' );
3132
var Float64Array = require( '@stdlib/array-float64' );
3233
var Complex128Array = require( '@stdlib/array-complex128' );
@@ -48,6 +49,9 @@ console.log( isComplexTypedArray( new Float64Array( 10 ) ) );
4849
console.log( isComplexTypedArray( new Float32Array( 10 ) ) );
4950
// => false
5051

52+
console.log( isComplexTypedArray( new Float16Array( 10 ) ) );
53+
// => false
54+
5155
console.log( isComplexTypedArray( new Int32Array( 10 ) ) );
5256
// => false
5357

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"devDependencies": {
4343
"@stdlib/array-complex128": "^0.3.2",
4444
"@stdlib/array-complex64": "^0.3.2",
45+
"@stdlib/array-float16": "github:stdlib-js/array-float16#main",
4546
"@stdlib/array-float32": "^0.2.3",
4647
"@stdlib/array-float64": "^0.2.3",
4748
"@stdlib/array-int16": "^0.2.3",

test/test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ var Int16Array = require( '@stdlib/array-int16' );
2929
var Uint16Array = require( '@stdlib/array-uint16' );
3030
var Int32Array = require( '@stdlib/array-int32' );
3131
var Uint32Array = require( '@stdlib/array-uint32' );
32+
var Float16Array = require( '@stdlib/array-float16' );
3233
var Float32Array = require( '@stdlib/array-float32' );
3334
var Float64Array = require( '@stdlib/array-float64' );
3435
var Complex128Array = require( '@stdlib/array-complex128' );
@@ -73,6 +74,7 @@ tape( 'the function returns `false` if not provided a complex typed array', func
7374
{ 'length': 10 }, // eslint-disable-line object-curly-newline
7475
new Float64Array( 10 ),
7576
new Float32Array( 10 ),
77+
new Float16Array( 10 ),
7678
new Int32Array( 10 ),
7779
new Uint32Array( 10 ),
7880
new Int16Array( 10 ),

0 commit comments

Comments
 (0)