Data Types
List of typed array unsigned integer data types.
Usage
var dtypes = require( '@stdlib/array/typed-unsigned-integer-dtypes' );
dtypes()
Returns a list of typed array unsigned integer data types.
var out = dtypes();
// e.g., returns [ 'uint16', 'uint32', 'uint8', 'uint8c' ]
The output array
contains the following data types:
uint16
: unsigned 16-bit integers.uint32
: unsigned 32-bit integers.uint8
: unsigned 8-bit integers.uint8c
: unsigned clamped 8-bit integers.
Examples
var indexOf = require( '@stdlib/utils/index-of' );
var dtypes = require( '@stdlib/array/typed-unsigned-integer-dtypes' );
var DTYPES = dtypes();
function isdtype( str ) {
if ( indexOf( DTYPES, str ) === -1 ) {
return false;
}
return true;
}
var bool = isdtype( 'uint32' );
// returns true
bool = isdtype( 'uint16' );
// returns true
bool = isdtype( 'int16' );
// returns false
bool = isdtype( 'beep' );
// returns false