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