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
|
{{alias}}( value )
Tests if a value is complex-typed-array-like.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether value is complex-typed-array-like.
Examples
--------
> var bool = {{alias}}( new {{alias:@stdlib/array/complex128}}() )
true
> bool = {{alias}}({
... 'length': 10,
... 'byteOffset': 0,
... 'byteLength': 10,
... 'BYTES_PER_ELEMENT': 4,
... 'get': function get() {},
... 'set': function set() {}
... })
true
See Also
--------
|