@@ -29,6 +29,8 @@ import { RealOrComplexTypedArray, Complex128Array, Complex64Array, DataType } fr
29
29
* @returns data type
30
30
*
31
31
* @example
32
+ * var Float64Array = require( `@stdlib/array/float64` );
33
+ *
32
34
* var dt = dtype( new Float64Array( [ 1, 2, 3 ] ) );
33
35
* // returns 'float64'
34
36
*/
@@ -41,6 +43,8 @@ declare function dtype( value: Float64Array ): 'float64';
41
43
* @returns data type
42
44
*
43
45
* @example
46
+ * var Float32Array = require( `@stdlib/array/float32` );
47
+ *
44
48
* var dt = dtype( new Float32Array( [ 1, 2, 3 ] ) );
45
49
* // returns 'float32'
46
50
*/
@@ -81,6 +85,8 @@ declare function dtype( value: Complex64Array ): 'complex64';
81
85
* @returns data type
82
86
*
83
87
* @example
88
+ * var Int32Array = require( `@stdlib/array/int32` );
89
+ *
84
90
* var dt = dtype( new Int32Array( [ 1, 2, 3 ] ) );
85
91
* // returns 'int32'
86
92
*/
@@ -93,6 +99,8 @@ declare function dtype( value: Int32Array ): 'int32';
93
99
* @returns data type
94
100
*
95
101
* @example
102
+ * var Int16Array = require( `@stdlib/array/int16` );
103
+ *
96
104
* var dt = dtype( new Int16Array( [ 1, 2, 3 ] ) );
97
105
* // returns 'int16'
98
106
*/
@@ -105,6 +113,8 @@ declare function dtype( value: Int16Array ): 'int16';
105
113
* @returns data type
106
114
*
107
115
* @example
116
+ * var Int8Array = require( `@stdlib/array/int8` );
117
+ *
108
118
* var dt = dtype( new Int8Array( [ 1, 2, 3 ] ) );
109
119
* // returns 'int8'
110
120
*/
@@ -117,6 +127,8 @@ declare function dtype( value: Int8Array ): 'int8';
117
127
* @returns data type
118
128
*
119
129
* @example
130
+ * var Uint32Array = require( `@stdlib/array/uint32` );
131
+ *
120
132
* var dt = dtype( new Uint32Array( [ 1, 2, 3 ] ) );
121
133
* // returns 'uint32'
122
134
*/
@@ -129,6 +141,8 @@ declare function dtype( value: Uint32Array ): 'uint32';
129
141
* @returns data type
130
142
*
131
143
* @example
144
+ * var Uint16Array = require( `@stdlib/array/uint16` );
145
+ *
132
146
* var dt = dtype( new Uint16Array( [ 1, 2, 3 ] ) );
133
147
* // returns 'uint16'
134
148
*/
@@ -141,6 +155,8 @@ declare function dtype( value: Uint16Array ): 'uint16';
141
155
* @returns data type
142
156
*
143
157
* @example
158
+ * var Uint8Array = require( `@stdlib/array/uint8` );
159
+ *
144
160
* var dt = dtype( new Uint8Array( [ 1, 2, 3 ] ) );
145
161
* // returns 'uint8'
146
162
*/
@@ -153,6 +169,8 @@ declare function dtype( value: Uint8Array ): 'uint8';
153
169
* @returns data type
154
170
*
155
171
* @example
172
+ * var Uint8ClampedArray = require( `@stdlib/array/uint8c` );
173
+ *
156
174
* var dt = dtype( new Uint8ClampedArray( [ 1, 2, 3 ] ) );
157
175
* // returns 'uint8c'
158
176
*/
0 commit comments