Skip to content

Commit 3e20428

Browse files
Merge branch 'lognormal/kurtosis' of https://github.com/vivekmaurya001/stdlib into lognormal/kurtosis
2 parents e40e874 + 321e49e commit 3e20428

File tree

249 files changed

+2693
-2661
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

249 files changed

+2693
-2661
lines changed

.github/workflows/namespace_declarations.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,15 @@ jobs:
112112
113113
- updates namespace TypeScript declarations
114114
115+
## Reviewer Checklist
116+
117+
- [ ] **Check the scope of the changes** (following [Conventional Commits](https://www.conventionalcommits.org)):
118+
- Are these **new APIs**? Then this is a `feat`.
119+
- Are these **changes to existing APIs** that could break compatibility? Then this is a `feat!` (i.e., a breaking change).
120+
- Are these **only documentation** changes to existing APIs? Then this is `docs`.
121+
- [ ] Update the PR title to align with the change type (`feat`, `feat!`, or `docs`).
122+
- [ ] Approve the PR once you are confident about the classification and changes made.
123+
115124
commit-message: 'feat: update namespace TypeScript declarations'
116125
committer: 'stdlib-bot <[email protected]>'
117126
signoff: true

.github/workflows/update_contributors.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,13 @@ jobs:
105105
106106
- updates the list of contributors
107107
108+
## Reviewer Checklist
109+
110+
- [ ] For any **new contributors**, check if their full names are listed on their GitHub profile or in social links.
111+
- [ ] If so, on the PR branch **update** the `.mailmap` file accordingly to ensure proper attribution.
112+
- [ ] If updating `.mailmap`, **regenerate** the contributors file by running `make update-contributors` on the PR branch afterward.
113+
- [ ] Approve the PR after verifying the changes.
114+
108115
commit-message: 'docs: update list of contributors'
109116
committer: 'stdlib-bot <[email protected]>'
110117
signoff: true

.mailmap

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ Chinmay Joshi <[email protected]> Chinmay J
5252
5353
Debashis Maharana <[email protected]> DebashisMaharana
5454

55+
Dhruv Arvind Singh <[email protected]> DhruvArvindSingh
56+
Dhruv Arvind Singh <[email protected]> Dhruv/
57+
5558
5659
Dorrin Sotoudeh <[email protected]> dorrin-sot
5760

@@ -216,6 +219,9 @@ Vaibhav Patel <[email protected]> ProCoderVP
216219
217220
Varad Gupta <[email protected]> vr-varad
218221

222+
223+
Vivek Maurya <[email protected]> vivekmaurya001
224+
219225
# Y
220226

221227
Yaswanth Kosuru <[email protected]> yaswanth

CONTRIBUTORS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Daniel Killenberger <[email protected]>
2727
Daniel Yu <[email protected]>
2828
Debashis Maharana <[email protected]>
2929
Desh Deepak Kant <[email protected]>
30-
30+
Dhruv Arvind Singh <[email protected]>
3131
Divyansh Seth <[email protected]>
3232
Dominic Lim <[email protected]>
3333
Dominik Moritz <[email protected]>
@@ -118,7 +118,7 @@ UtkershBasnet <[email protected]>
118118
Vaibhav Patel <[email protected]>
119119
Varad Gupta <[email protected]>
120120
Vinit Pandit <[email protected]>
121-
Vivek maurya <[email protected].com>
121+
Vivek Maurya <vm8118134@gmail.com>
122122
Xiaochuan Ye <[email protected]>
123123
Yaswanth Kosuru <[email protected]>
124124
Yernar Yergaziyev <[email protected]>

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2024 The Stdlib Authors.
1+
Copyright (c) 2016-2025 The Stdlib Authors.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ See [LICENSE][stdlib-license].
611611
612612
## Copyright
613613
614-
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
614+
Copyright © 2016-2025. The Stdlib [Authors][stdlib-authors].
615615
616616
</section>
617617

lib/node_modules/@stdlib/array/base/cuevery-by-right/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ var bool = ( out === y );
6666

6767
The invoked `predicate` function is provided three arguments:
6868

69-
- **value**: collection element,
70-
- **index**: collection index,
71-
- **collection**: input collection,
69+
- **value**: collection element.
70+
- **index**: collection index.
71+
- **collection**: input collection.
7272

7373
To set the function execution context, provide a `thisArg`.
7474

lib/node_modules/@stdlib/array/float32/README.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ var arr = Float32Array.from( [ 1.0, 2.0 ], mapFcn );
233233

234234
A callback function is provided two arguments:
235235

236-
- `value`: source value
237-
- `index`: source index
236+
- `value`: source value.
237+
- `index`: source index.
238238

239239
To set the callback execution context, provide a `thisArg`.
240240

@@ -371,9 +371,9 @@ var bool = arr.every( predicate );
371371

372372
A `predicate` function is provided three arguments:
373373

374-
- `value`: array element
375-
- `index`: array index
376-
- `arr`: array on which the method is invoked
374+
- `value`: array element.
375+
- `index`: array index.
376+
- `arr`: array on which the method is invoked.
377377

378378
To set the callback execution context, provide a `thisArg`.
379379

@@ -490,9 +490,9 @@ var arr2 = arr1.filter( predicate );
490490

491491
A `predicate` function is provided three arguments:
492492

493-
- `value`: array element
494-
- `index`: array index
495-
- `arr`: array on which the method is invoked
493+
- `value`: array element.
494+
- `index`: array index.
495+
- `arr`: array on which the method is invoked.
496496

497497
To set the callback execution context, provide a `thisArg`.
498498

@@ -552,9 +552,9 @@ var v = arr.find( predicate );
552552

553553
A `predicate` function is provided three arguments:
554554

555-
- `value`: array element
556-
- `index`: array index
557-
- `arr`: array on which the method is invoked
555+
- `value`: array element.
556+
- `index`: array index.
557+
- `arr`: array on which the method is invoked.
558558

559559
To set the callback execution context, provide a `thisArg`.
560560

@@ -615,9 +615,9 @@ var idx = arr.findIndex( predicate );
615615

616616
A `predicate` function is provided three arguments:
617617

618-
- `value`: array element
619-
- `index`: array index
620-
- `arr`: array on which the method is invoked
618+
- `value`: array element.
619+
- `index`: array index.
620+
- `arr`: array on which the method is invoked.
621621

622622
To set the callback execution context, provide a `thisArg`.
623623

@@ -670,9 +670,9 @@ console.log( str );
670670

671671
The callback is provided three arguments:
672672

673-
- `value`: array element
674-
- `index`: array index
675-
- `arr`: array on which the method is invoked
673+
- `value`: array element.
674+
- `index`: array index.
675+
- `arr`: array on which the method is invoked.
676676

677677
To set the callback execution context, provide a `thisArg`.
678678

@@ -893,9 +893,9 @@ var arr2 = arr1.map( fcn );
893893

894894
A callback is provided three arguments:
895895

896-
- `value`: array element
897-
- `index`: array index
898-
- `arr`: array on which the method is invoked
896+
- `value`: array element.
897+
- `index`: array index.
898+
- `arr`: array on which the method is invoked.
899899

900900
To set the callback execution context, provide a `thisArg`.
901901

@@ -957,10 +957,10 @@ var v = arr.reduce( fcn, 0.0 );
957957

958958
A callback is provided four arguments:
959959

960-
- `acc`: accumulated result
961-
- `value`: array element
962-
- `index`: array index
963-
- `arr`: array on which the method is invoked
960+
- `acc`: accumulated result.
961+
- `value`: array element.
962+
- `index`: array index.
963+
- `arr`: array on which the method is invoked.
964964

965965
<a name="method-reduce-right"></a>
966966

@@ -1000,10 +1000,10 @@ var v = arr.reduce( fcn, 0.0 );
10001000

10011001
A callback is provided four arguments:
10021002

1003-
- `acc`: accumulated result
1004-
- `value`: array element
1005-
- `index`: array index
1006-
- `arr`: array on which the method is invoked
1003+
- `acc`: accumulated result.
1004+
- `value`: array element.
1005+
- `index`: array index.
1006+
- `arr`: array on which the method is invoked.
10071007

10081008
<a name="method-reverse"></a>
10091009

@@ -1176,9 +1176,9 @@ var bool = arr.some( predicate );
11761176

11771177
A `predicate` function is provided three arguments:
11781178

1179-
- `value`: array element
1180-
- `index`: array index
1181-
- `arr`: array on which the method is invoked
1179+
- `value`: array element.
1180+
- `index`: array index.
1181+
- `arr`: array on which the method is invoked.
11821182

11831183
To set the callback execution context, provide a `thisArg`.
11841184

lib/node_modules/@stdlib/array/float64/README.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ var arr = Float64Array.from( [ 1.0, -1.0 ], mapFcn );
229229

230230
A callback function is provided two arguments:
231231

232-
- `value`: source value
233-
- `index`: source index
232+
- `value`: source value.
233+
- `index`: source index.
234234

235235
To set the callback execution context, provide a `thisArg`.
236236

@@ -363,9 +363,9 @@ var bool = arr.every( predicate );
363363

364364
A `predicate` function is provided three arguments:
365365

366-
- `value`: array element
367-
- `index`: array index
368-
- `arr`: array on which the method is invoked
366+
- `value`: array element.
367+
- `index`: array index.
368+
- `arr`: array on which the method is invoked.
369369

370370
To set the callback execution context, provide a `thisArg`.
371371

@@ -482,9 +482,9 @@ var arr2 = arr1.filter( predicate );
482482

483483
A `predicate` function is provided three arguments:
484484

485-
- `value`: array element
486-
- `index`: array index
487-
- `arr`: array on which the method is invoked
485+
- `value`: array element.
486+
- `index`: array index.
487+
- `arr`: array on which the method is invoked.
488488

489489
To set the callback execution context, provide a `thisArg`.
490490

@@ -544,9 +544,9 @@ var v = arr.find( predicate );
544544

545545
A `predicate` function is provided three arguments:
546546

547-
- `value`: array element
548-
- `index`: array index
549-
- `arr`: array on which the method is invoked
547+
- `value`: array element.
548+
- `index`: array index.
549+
- `arr`: array on which the method is invoked.
550550

551551
To set the callback execution context, provide a `thisArg`.
552552

@@ -607,9 +607,9 @@ var idx = arr.findIndex( predicate );
607607

608608
A `predicate` function is provided three arguments:
609609

610-
- `value`: array element
611-
- `index`: array index
612-
- `arr`: array on which the method is invoked
610+
- `value`: array element.
611+
- `index`: array index.
612+
- `arr`: array on which the method is invoked.
613613

614614
To set the callback execution context, provide a `thisArg`.
615615

@@ -662,9 +662,9 @@ console.log( str );
662662

663663
The callback is provided three arguments:
664664

665-
- `value`: array element
666-
- `index`: array index
667-
- `arr`: array on which the method is invoked
665+
- `value`: array element.
666+
- `index`: array index.
667+
- `arr`: array on which the method is invoked.
668668

669669
To set the callback execution context, provide a `thisArg`.
670670

@@ -885,9 +885,9 @@ var arr2 = arr1.map( fcn );
885885

886886
A callback is provided three arguments:
887887

888-
- `value`: array element
889-
- `index`: array index
890-
- `arr`: array on which the method is invoked
888+
- `value`: array element.
889+
- `index`: array index.
890+
- `arr`: array on which the method is invoked.
891891

892892
To set the callback execution context, provide a `thisArg`.
893893

@@ -949,10 +949,10 @@ var v = arr.reduce( fcn, 0.0 );
949949

950950
A callback is provided four arguments:
951951

952-
- `acc`: accumulated result
953-
- `value`: array element
954-
- `index`: array index
955-
- `arr`: array on which the method is invoked
952+
- `acc`: accumulated result.
953+
- `value`: array element.
954+
- `index`: array index.
955+
- `arr`: array on which the method is invoked.
956956

957957
<a name="method-reduce-right"></a>
958958

@@ -992,10 +992,10 @@ var v = arr.reduce( fcn, 0.0 );
992992

993993
A callback is provided four arguments:
994994

995-
- `acc`: accumulated result
996-
- `value`: array element
997-
- `index`: array index
998-
- `arr`: array on which the method is invoked
995+
- `acc`: accumulated result.
996+
- `value`: array element.
997+
- `index`: array index.
998+
- `arr`: array on which the method is invoked.
999999

10001000
<a name="method-reverse"></a>
10011001

@@ -1168,9 +1168,9 @@ var bool = arr.some( predicate );
11681168

11691169
A `predicate` function is provided three arguments:
11701170

1171-
- `value`: array element
1172-
- `index`: array index
1173-
- `arr`: array on which the method is invoked
1171+
- `value`: array element.
1172+
- `index`: array index.
1173+
- `arr`: array on which the method is invoked.
11741174

11751175
To set the callback execution context, provide a `thisArg`.
11761176

0 commit comments

Comments
 (0)