str2enum

Return the enumeration constant associated with a BLAS matrix triangle.

Usage

var str2enum = require( '@stdlib/blas/base/matrix-triangle-str2enum' );

str2enum( operation )

Returns the enumeration constant associated with a BLAS matrix triangle.

var v = str2enum( 'upper' );
// 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., UPPER == 0). Instead, the function should be used in an opaque manner.

Examples

var str2enum = require( '@stdlib/blas/base/matrix-triangle-str2enum' );

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

v = str2enum( 'lower' );
// returns <number>
Did you find this page helpful?