Skip to content

Commit 15091cd

Browse files
committed
Auto-generated commit
1 parent 884c146 commit 15091cd

6 files changed

Lines changed: 26 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+
- [`f765960`](https://github.com/stdlib-js/stdlib/commit/f765960c33022d964a5fde355f3a38caf7a17021) - add float16 support in `array/base/assert/is-accessor-array` [(#13242)](https://github.com/stdlib-js/stdlib/pull/13242)
14+
15+
</section>
16+
17+
<!-- /.features -->
818

919
<section class="commits">
1020

1121
### Commits
1222

1323
<details>
1424

25+
- [`f765960`](https://github.com/stdlib-js/stdlib/commit/f765960c33022d964a5fde355f3a38caf7a17021) - **feat:** add float16 support in `array/base/assert/is-accessor-array` [(#13242)](https://github.com/stdlib-js/stdlib/pull/13242) _(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
@@ -124,6 +124,7 @@ var Int16Array = require( '@stdlib/array-int16' );
124124
var Uint16Array = require( '@stdlib/array-uint16' );
125125
var Int32Array = require( '@stdlib/array-int32' );
126126
var Uint32Array = require( '@stdlib/array-uint32' );
127+
var Float16Array = require( '@stdlib/array-float16' );
127128
var Float32Array = require( '@stdlib/array-float32' );
128129
var Float64Array = require( '@stdlib/array-float64' );
129130
var Complex128Array = require( '@stdlib/array-complex128' );
@@ -145,6 +146,9 @@ bool = isAccessorArray( new Float64Array( 10 ) );
145146
bool = isAccessorArray( new Float32Array( 10 ) );
146147
// returns false
147148

149+
bool = isAccessorArray( new Float16Array( 10 ) );
150+
// returns false
151+
148152
bool = isAccessorArray( new Int32Array( 10 ) );
149153
// returns false
150154

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( isAccessorArray( new Float64Array( 10 ) ) );
4849
console.log( isAccessorArray( new Float32Array( 10 ) ) );
4950
// => false
5051

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

package.json

Lines changed: 2 additions & 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",
@@ -89,6 +90,7 @@
8990
"collection",
9091
"float64array",
9192
"float32array",
93+
"float16array",
9294
"int32array",
9395
"uint32array",
9496
"int16array",

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' );
@@ -69,6 +70,7 @@ tape( 'the function returns `false` if provided an array-like object which does
6970
{ 'length': 10 }, // eslint-disable-line object-curly-newline
7071
new Float64Array( 10 ),
7172
new Float32Array( 10 ),
73+
new Float16Array( 10 ),
7274
new Int32Array( 10 ),
7375
new Uint32Array( 10 ),
7476
new Int16Array( 10 ),

0 commit comments

Comments
 (0)