@@ -554,6 +554,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
554
554
/**
555
555
* Tests whether all elements in an array pass a test implemented by a predicate function.
556
556
*
557
+ * @private
557
558
* @name every
558
559
* @memberof TypedArray.prototype
559
560
* @type {Function }
@@ -585,6 +586,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
585
586
/**
586
587
* Returns a new array containing the elements of an array which pass a test implemented by a predicate function.
587
588
*
589
+ * @private
588
590
* @name filter
589
591
* @memberof TypedArray.prototype
590
592
* @type {Function }
@@ -620,6 +622,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
620
622
/**
621
623
* Invokes a function once for each array element.
622
624
*
625
+ * @private
623
626
* @name forEach
624
627
* @memberof TypedArray.prototype
625
628
* @type {Function }
@@ -798,7 +801,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
798
801
* @memberof TypedArray.prototype
799
802
* @type {Function }
800
803
* @param {* } searchElement - element to search for
801
- * @param {integer } fromIndex - starting index (inclusive)
804
+ * @param {integer } [ fromIndex] - starting index (inclusive)
802
805
* @throws {TypeError } `this` must be a typed array instance
803
806
* @throws {TypeError } second argument must be an integer
804
807
* @returns {integer } index or -1
@@ -882,6 +885,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
882
885
/**
883
886
* Applies a provided callback function to each element of the array, in order, passing in the return value from the calculation on the preceding element and returning the accumulated result upon completion.
884
887
*
888
+ * @private
885
889
* @name reduce
886
890
* @memberof TypedArray.prototype
887
891
* @type {Function }
@@ -924,6 +928,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
924
928
/**
925
929
* Applies a provided callback function to each element of the array, in reverse order, passing in the return value from the calculation on the following element and returning the accumulated result upon completion.
926
930
*
931
+ * @private
927
932
* @name reduceRight
928
933
* @memberof TypedArray.prototype
929
934
* @type {Function }
@@ -1061,6 +1066,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
1061
1066
/**
1062
1067
* Tests whether at least one element in the typed array passes a test implemented by a predicate function.
1063
1068
*
1069
+ * @private
1064
1070
* @name some
1065
1071
* @memberof TypedArray.prototype
1066
1072
* @type {Function }
@@ -1117,6 +1123,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
1117
1123
/**
1118
1124
* Returns a new typed array with the element at a provided index replaced with a provided value.
1119
1125
*
1126
+ * @private
1120
1127
* @name with
1121
1128
* @memberof TypedArray.prototype
1122
1129
* @type {Function }
0 commit comments