-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepl.txt
More file actions
30 lines (23 loc) · 701 Bytes
/
repl.txt
File metadata and controls
30 lines (23 loc) · 701 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
{{alias}}( value )
Tests if an array-like object supports the accessor (get/set) protocol.
An accessor array is defined as an array, typed array, or an array-like
object (excluding strings and functions) having `get` and `set` methods for
accessing array elements.
Parameters
----------
value: ArrayLikeObject
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether a value is an accessor array.
Examples
--------
> var bool = {{alias}}( new {{alias:@stdlib/array/complex64}}( 10 ) )
true
> bool = {{alias}}( [] )
false
> bool = {{alias}}( { 'length': 0 } )
false
See Also
--------