@@ -76,7 +76,7 @@ interface GenericVector {
76
76
/**
77
77
* Creates a vector (i.e., a one-dimensional ndarray).
78
78
*
79
- * @param obj - array-like object or iterable from which to generate a typed array
79
+ * @param obj - array-like object or iterable from which to generate a vector
80
80
* @param options - function options
81
81
* @param options.readonly - boolean indicating whether to return a read-only vector
82
82
* @param options.mode - specifies how to handle indices which exceed vector dimensions
@@ -116,7 +116,7 @@ interface TypedVector<T extends keyof TypedDataTypeMap> {
116
116
/**
117
117
* Creates a vector (i.e., a one-dimensional ndarray).
118
118
*
119
- * @param obj - array-like object or iterable from which to generate a typed array
119
+ * @param obj - array-like object or iterable from which to generate a vector
120
120
* @param options - function options
121
121
* @param options.readonly - boolean indicating whether to return a read-only vector
122
122
* @param options.mode - specifies how to handle indices which exceed vector dimensions
@@ -141,7 +141,7 @@ interface TypedVector<T extends keyof TypedDataTypeMap> {
141
141
* Creates a vector (i.e., a one-dimensional ndarray).
142
142
*
143
143
* @param buffer - underlying ArrayBuffer
144
- * @param byteOffset - integer byte offset specifying the location of the first typed array element
144
+ * @param byteOffset - integer byte offset specifying the location of the first vector element
145
145
* @param options - function options
146
146
* @param options.readonly - boolean indicating whether to return a read-only vector
147
147
* @param options.mode - specifies how to handle indices which exceed vector dimensions
@@ -154,7 +154,7 @@ interface TypedVector<T extends keyof TypedDataTypeMap> {
154
154
* Creates a vector (i.e., a one-dimensional ndarray).
155
155
*
156
156
* @param buffer - underlying ArrayBuffer
157
- * @param byteOffset - integer byte offset specifying the location of the first typed array element
157
+ * @param byteOffset - integer byte offset specifying the location of the first vector element
158
158
* @param length - view length; if not provided, the view spans from the byteOffset to the end of the underlying ArrayBuffer
159
159
* @param options - function options
160
160
* @param options.readonly - boolean indicating whether to return a read-only vector
@@ -324,7 +324,7 @@ interface Vector {
324
324
/**
325
325
* Creates a vector (i.e., a one-dimensional ndarray).
326
326
*
327
- * @param obj - array-like object or iterable from which to generate a typed array
327
+ * @param obj - array-like object or iterable from which to generate a vector
328
328
* @param dtype - data type (default: 'float64')
329
329
* @param options - function options
330
330
* @param options.readonly - boolean indicating whether to return a read-only vector
@@ -376,7 +376,7 @@ interface Vector {
376
376
/**
377
377
* Creates a vector (i.e., a one-dimensional ndarray).
378
378
*
379
- * @param obj - array-like object or iterable from which to generate a typed array
379
+ * @param obj - array-like object or iterable from which to generate a vector
380
380
* @param options - function options
381
381
* @param options.readonly - boolean indicating whether to return a read-only vector
382
382
* @param options.mode - specifies how to handle indices which exceed vector dimensions
@@ -487,7 +487,7 @@ interface Vector {
487
487
* Creates a vector (i.e., a one-dimensional ndarray).
488
488
*
489
489
* @param buffer - underlying ArrayBuffer
490
- * @param byteOffset - integer byte offset specifying the location of the first typed array element (default: 0)
490
+ * @param byteOffset - integer byte offset specifying the location of the first vector element (default: 0)
491
491
* @param dtype - data type (default: 'float64')
492
492
* @param options - function options
493
493
* @param options.readonly - boolean indicating whether to return a read-only vector
@@ -546,7 +546,7 @@ interface Vector {
546
546
* Creates a vector (i.e., a one-dimensional ndarray).
547
547
*
548
548
* @param buffer - underlying ArrayBuffer
549
- * @param byteOffset - integer byte offset specifying the location of the first typed array element
549
+ * @param byteOffset - integer byte offset specifying the location of the first vector element
550
550
* @param options - function options
551
551
* @param options.readonly - boolean indicating whether to return a read-only vector
552
552
* @param options.mode - specifies how to handle indices which exceed vector dimensions
@@ -589,7 +589,7 @@ interface Vector {
589
589
* Creates a vector (i.e., a one-dimensional ndarray).
590
590
*
591
591
* @param buffer - underlying ArrayBuffer
592
- * @param byteOffset - integer byte offset specifying the location of the first typed array element (default: 0)
592
+ * @param byteOffset - integer byte offset specifying the location of the first vector element (default: 0)
593
593
* @param length - view length; if not provided, the view spans from the byteOffset to the end of the underlying ArrayBuffer
594
594
* @param dtype - data type (default: 'float64')
595
595
* @param options - function options
@@ -647,7 +647,7 @@ interface Vector {
647
647
* Creates a vector (i.e., a one-dimensional ndarray).
648
648
*
649
649
* @param buffer - underlying ArrayBuffer
650
- * @param byteOffset - integer byte offset specifying the location of the first typed array element
650
+ * @param byteOffset - integer byte offset specifying the location of the first vector element
651
651
* @param length - view length; if not provided, the view spans from the byteOffset to the end of the underlying ArrayBuffer
652
652
* @param options - function options
653
653
* @param options.readonly - boolean indicating whether to return a read-only vector
@@ -812,7 +812,7 @@ interface Vector {
812
812
* Creates a vector (i.e., a one-dimensional ndarray).
813
813
*
814
814
* @param arg - length, typed array, array-like object, buffer, or iterable
815
- * @param byteOffset - integer byte offset specifying the location of the first typed array element (default: 0)
815
+ * @param byteOffset - integer byte offset specifying the location of the first vector element (default: 0)
816
816
* @param length - view length; if not provided, the view spans from the byteOffset to the end of the underlying ArrayBuffer
817
817
* @param dtype - data type (default: 'float64')
818
818
* @param options - function options
0 commit comments