-
-
Notifications
You must be signed in to change notification settings - Fork 804
/
Copy pathrepl.txt
52 lines (39 loc) · 1.53 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
{{alias}}( dtype )
Returns an accessor function for setting an element in an indexed array-like
object.
An accessor function accepts the following arguments:
- arr: input array.
- idx: element index.
- value: value to set.
If provided an unsupported `dtype`, the function returns a default accessor
function for accessing elements in any indexed array-like object.
Otherwise, the function returns an accessor function which should *only* be
provided an array instance corresponding to `dtype` (e.g., if `dtype` is
'float64', the returned accessor function should only be provided instances
of Float64Array).
Accessor functions do *not* verify that provided input arrays are array
instances corresponding to `dtype`, as doing so would introduce performance
overhead. If array instances corresponding to other data types are provided
to an accessor function, JavaScript runtimes will consider the function
polymorphic, potentially triggering de-optimization. In order to ensure
maximum performance, *always* ensure that an accessor function is
monomorphic.
Accessor functions do *not* perform bounds checking.
Accessor functions do *not* validate input values.
Parameters
----------
dtype: string
Array data type.
Returns
-------
f: Function
Accessor function.
Examples
--------
> var f = {{alias}}( 'generic' );
> var x = [ 1, 2, 3, 4 ];
> f( x, 2, 10 );
> x
[ 1, 2, 10, 4 ]
See Also
--------