str2enum

Return the enumeration constant associated with a BLAS transpose operation.

Usage

var str2enum = require( '@stdlib/blas/base/transpose-operation-str2enum' );

str2enum( operation )

Returns the enumeration constant associated with a BLAS transpose operation.

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

Examples

var str2enum = require( '@stdlib/blas/base/transpose-operation-str2enum' );

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

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