You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
<section class="release" id="unreleased">
6
6
7
-
## Unreleased (2024-12-02)
7
+
## Unreleased (2024-12-03)
8
8
9
9
<section class="packages">
10
10
@@ -591,6 +591,8 @@ A total of 8 people contributed to this release. Thank you to the following cont
591
591
592
592
<details>
593
593
594
+
- [`e5d32c5`](https://github.com/stdlib-js/stdlib/commit/e5d32c53f8f552fae4d672c8750619a59ce078ac) - **chore:** minor clean-up _(by Philipp Burckhardt)_
595
+
- [`9798530`](https://github.com/stdlib-js/stdlib/commit/97985302871b99c45462d43479e246c4549c3991) - **chore:** minor clean-up _(by Philipp Burckhardt)_
594
596
- [`a0ba090`](https://github.com/stdlib-js/stdlib/commit/a0ba090515dfdfe617e1179ddb7581db24fec44b) - **feat:** add `with` method to `array/fixed-endian-factory` [(#3291)](https://github.com/stdlib-js/stdlib/pull/3291) _(by Aayush Khanna, Philipp Burckhardt)_
595
597
- [`d24969e`](https://github.com/stdlib-js/stdlib/commit/d24969e35be1cfbff2e0d62d740c451e476ee444) - **chore:** update package meta data [(#3303)](https://github.com/stdlib-js/stdlib/pull/3303) _(by stdlib-bot, Athan Reines)_
596
598
- [`1242bbf`](https://github.com/stdlib-js/stdlib/commit/1242bbf3e43a142f8d0bd4a66aece5baa33c03fe) - **feat:** add `filter` method to `array/fixed-endian-factory` [(#3278)](https://github.com/stdlib-js/stdlib/pull/3278) _(by Aayush Khanna, Philipp Burckhardt)_
Serializes the array elements into a string, with elements separated by the specified `separator`. If no `separator` is provided, a comma (`,`) is used as the default.
886
+
Returns a new stringby concatenating all array elements.
887
887
888
888
```javascript
889
889
var Float64ArrayFE =fixedEndianFactory( 'float64' );
@@ -892,20 +892,17 @@ var arr = new Float64ArrayFE( 'little-endian', [ 1.0, 2.0, 3.0 ] );
892
892
893
893
var str =arr.join();
894
894
// returns '1,2,3'
895
-
896
-
str =arr.join( ' - ' );
897
-
// returns '1 - 2 - 3'
898
895
```
899
896
900
-
If the provided `separator` is not a string, it is coerced to a string.
897
+
By default, the method separates serialized array elements with a comma. To use an alternative separator, provide a `separator` string.
901
898
902
899
```javascript
903
900
var Float64ArrayFE =fixedEndianFactory( 'float64' );
904
901
905
902
var arr =newFloat64ArrayFE( 'little-endian', [ 1.0, 2.0, 3.0 ] );
0 commit comments