enum2str

Return the BLAS operation side string associated with a BLAS operation side enumeration constant.

Usage

var enum2str = require( '@stdlib/blas/base/operation-side-enum2str' );

enum2str( operation )

Returns the BLAS operation side string associated with a BLAS operation side enumeration constant.

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

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

var s = enum2str( v );
// returns 'left'

If unable to resolve an operation string, the function returns null.

var v = enum2str( -999999999 );
// returns null

Examples

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

var str = enum2str( str2enum( 'left' ) );
// returns 'left'

str = enum2str( str2enum( 'right' ) );
// returns 'right'
Did you find this page helpful?