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
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2024-12-02)
7
+
## Unreleased (2024-12-03)
8
8
9
9
<sectionclass="features">
10
10
@@ -46,6 +46,8 @@ A total of 11 issues were closed in this release:
46
46
47
47
<details>
48
48
49
+
-[`e5d32c5`](https://github.com/stdlib-js/stdlib/commit/e5d32c53f8f552fae4d672c8750619a59ce078ac) - **chore:** minor clean-up _(by Philipp Burckhardt)_
50
+
-[`9798530`](https://github.com/stdlib-js/stdlib/commit/97985302871b99c45462d43479e246c4549c3991) - **chore:** minor clean-up _(by Philipp Burckhardt)_
49
51
-[`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)_
50
52
-[`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)_
51
53
-[`41af546`](https://github.com/stdlib-js/stdlib/commit/41af5467a9067f22ec8facdb535389bac10093bd) - **feat:** add `reduceRight` method to `array/fixed-endian-factory`[(#3300)](https://github.com/stdlib-js/stdlib/pull/3300)_(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.
919
+
Returns a new stringby concatenating all array elements.
920
920
921
921
```javascript
922
922
var Float64ArrayFE =fixedEndianFactory( 'float64' );
@@ -925,20 +925,17 @@ var arr = new Float64ArrayFE( 'little-endian', [ 1.0, 2.0, 3.0 ] );
925
925
926
926
var str =arr.join();
927
927
// returns '1,2,3'
928
-
929
-
str =arr.join( ' - ' );
930
-
// returns '1 - 2 - 3'
931
928
```
932
929
933
-
If the provided `separator` is not a string, it is coerced to a string.
930
+
By default, the method separates serialized array elements with a comma. To use an alternative separator, provide a `separator` string.
934
931
935
932
```javascript
936
933
var Float64ArrayFE =fixedEndianFactory( 'float64' );
937
934
938
935
var arr =newFloat64ArrayFE( 'little-endian', [ 1.0, 2.0, 3.0 ] );
0 commit comments