Data Types
List of typed array real-valued data types.
Usage
var dtypes = require( '@stdlib/array/typed-real-dtypes' );
dtypes()
Returns a list of typed array real-valued data types.
var out = dtypes(); // e.g., returns [ 'float32', ... ]
Examples
var indexOf = require( '@stdlib/utils/index-of' ); var dtypes = require( '@stdlib/array/typed-real-dtypes' ); var DTYPES = dtypes(); function isdtype( str ) { if ( indexOf( DTYPES, str ) === -1 ) { return false; } return true; } var bool = isdtype( 'float64' ); // returns true bool = isdtype( 'int16' ); // returns true bool = isdtype( 'uint8' ); // returns true bool = isdtype( 'beep' ); // returns false
See Also
@stdlib/array/dtypes: list of array data types.@stdlib/array/typed-complex-dtypes: list of complex typed array data types.