25 lines
403 B
Plaintext
25 lines
403 B
Plaintext
|
|
{{alias}}( value )
|
|
Tests if a value is an Int32Array.
|
|
|
|
Parameters
|
|
----------
|
|
value: any
|
|
Value to test.
|
|
|
|
Returns
|
|
-------
|
|
bool: boolean
|
|
Boolean indicating whether value is an Int32Array.
|
|
|
|
Examples
|
|
--------
|
|
> var bool = {{alias}}( new {{alias:@stdlib/array/int32}}( 10 ) )
|
|
true
|
|
> bool = {{alias}}( [] )
|
|
false
|
|
|
|
See Also
|
|
--------
|
|
|