isDataType
Test if an input value is a supported ndarray data type.
Usage
var isDataType = require( '@stdlib/ndarray/base/assert/is-data-type' );
isDataType( value )
Tests if an input value
is a supported ndarray data type.
var bool = isDataType( 'float32' );
// returns true
bool = isDataType( 'int32' );
// returns true
Examples
var isDataType = require( '@stdlib/ndarray/base/assert/is-data-type' );
var bool = isDataType( 'binary' );
// returns true
bool = isDataType( 'float32' );
// returns true
bool = isDataType( 'float64' );
// returns true
bool = isDataType( 'generic' );
// returns true
bool = isDataType( 'int16' );
// returns true
bool = isDataType( 'int32' );
// returns true
bool = isDataType( 'int8' );
// returns true
bool = isDataType( 'uint16' );
// returns true
bool = isDataType( 'uint32' );
// returns true
bool = isDataType( 'uint8' );
// returns true
bool = isDataType( 'uint8c' );
// returns true
bool = isDataType( '' );
// returns false
bool = isDataType( 'foo' );
// returns false