0.2.1 • Published 3 months ago

@stdlib/ndarray-base-dtype-str2enum v0.2.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 months ago

str2enum

NPM version Build Status Coverage Status

Return the enumeration constant associated with an ndarray data type string.

Installation

npm install @stdlib/ndarray-base-dtype-str2enum

Usage

var str2enum = require( '@stdlib/ndarray-base-dtype-str2enum' );

str2enum( dtype )

Return the enumeration constant associated with an ndarray data type string.

var v = str2enum( 'float64' );
// returns <number>

If unable to resolve an enumeration constant, the function returns null.

var v = str2enum( 'beep' );
// returns null

Notes

  • Downstream consumers of this function should not rely on specific integer values (e.g., INT8 == 0). Instead, the function should be used in an opaque manner.

Examples

var str2enum = require( '@stdlib/ndarray-base-dtype-str2enum' );

var v = str2enum( 'float64' );
// returns <number>

v = str2enum( 'float32' );
// returns <number>

v = str2enum( 'int32' );
// returns <number>

v = str2enum( 'int16' );
// returns <number>

v = str2enum( 'int8' );
// returns <number>

v = str2enum( 'uint32' );
// returns <number>

v = str2enum( 'uint16' );
// returns <number>

v = str2enum( 'uint8' );
// returns <number>

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2024. The Stdlib Authors.