str2enum
Return the enumeration constant associated with a BLAS diagonal type.
Usage
var str2enum = require( '@stdlib/blas/base/diagonal-type-str2enum' );
str2enum( diagonal )
Returns the enumeration constant associated with a BLAS diagonal-type.
var v = str2enum( 'unit' );
// 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.,
UNIT == 0
). Instead, the function should be used in an opaque manner.
Examples
var str2enum = require( '@stdlib/blas/base/diagonal-type-str2enum' );
var v = str2enum( 'unit' );
// returns <number>
v = str2enum( 'non-unit' );
// returns <number>