time-to-botec/js/node_modules/@stdlib/assert/is-vector-like/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

42 lines
821 B
Plaintext

{{alias}}( value )
Tests if a value is a 1-dimensional ndarray-like object.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether a value is a 1-dimensional ndarray-like
object.
Examples
--------
> var M = {};
> M.data = [ 0, 0, 0, 0 ];
> M.ndims = 1;
> M.shape = [ 4 ];
> M.strides = [ 1 ];
> M.offset = 0;
> M.order = 'row-major';
> M.dtype = 'generic';
> M.length = 4;
> M.flags = {};
> M.get = function get( i, j ) {};
> M.set = function set( i, j ) {};
> var bool = {{alias}}( M )
true
> bool = {{alias}}( [ 1, 2, 3, 4 ] )
false
> bool = {{alias}}( 3.14 )
false
> bool = {{alias}}( {} )
false
See Also
--------