-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepl.txt
More file actions
43 lines (37 loc) · 827 Bytes
/
repl.txt
File metadata and controls
43 lines (37 loc) · 827 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
34
35
36
37
38
39
40
41
42
{{alias}}( value )
Tests if an input value is a supported array numeric data type.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating if an input value is a supported array numeric data
type.
Examples
--------
> var bool = {{alias}}( 'float32' )
true
> bool = {{alias}}( 'float64' )
true
> bool = {{alias}}( 'int16' )
true
> bool = {{alias}}( 'int32' )
true
> bool = {{alias}}( 'int8' )
true
> bool = {{alias}}( 'uint16' )
true
> bool = {{alias}}( 'uint32' )
true
> bool = {{alias}}( 'uint8' )
true
> bool = {{alias}}( 'uint8c' )
true
> bool = {{alias}}( '' )
false
> bool = {{alias}}( 'beep' )
false
See Also
--------