-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepl.txt
More file actions
34 lines (26 loc) · 717 Bytes
/
repl.txt
File metadata and controls
34 lines (26 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{{alias}}( dtype )
Returns an integer-valued typed array constructor.
The function returns constructors for the following data types:
- int16: signed 16-bit integers.
- int32: signed 32-bit integers.
- int8: signed 8-bit integers.
- uint16: unsigned 16-bit integers.
- uint32: unsigned 32-bit integers.
- uint8: unsigned 8-bit integers.
- uint8c: unsigned clamped 8-bit integers.
Parameters
----------
dtype: string
Data type.
Returns
-------
out: Function|null
Typed array constructor.
Examples
--------
> var ctor = {{alias}}( 'int32' )
<Function>
> ctor = {{alias}}( 'int' )
null
See Also
--------