-
-
Notifications
You must be signed in to change notification settings - Fork 804
/
Copy pathrepl.txt
69 lines (48 loc) · 1.28 KB
/
repl.txt
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{{alias}}()
Returns default array settings.
Returns
-------
out: Object
Default settings.
out.dtypes: Object
Default data types.
out.dtypes.default: string
Default data type.
out.dtypes.numeric: string
Default numeric data type.
out.dtypes.real: string
Default real-valued data type.
out.dtypes.floating_point: string
Default floating-point data type.
out.dtypes.real_floating_point: string
Default real-valued floating-point data type.
out.dtypes.complex_floating_point: string
Default complex-valued floating-point data type.
out.dtypes.boolean: string
Default boolean data type.
out.dtypes.integer: string
Default integer data type.
out.dtypes.signed_integer: string
Default signed integer data type.
out.dtypes.unsigned_integer: string
Default unsigned integer data type.
Examples
--------
> var out = {{alias}}()
{...}
{{alias}}.get( name )
Returns a default setting.
Parameters
----------
name: string
Setting name.
Returns
-------
out: any
Setting value.
Examples
--------
> var v = {{alias}}.get( 'dtypes.default' )
<string>
See Also
--------