Skip to content

feat: add blas/base/matrix-triangle-str2enum & blas/base/matrix-triangle/enum2str #2495

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Jul 4, 2024
121 changes: 121 additions & 0 deletions lib/node_modules/@stdlib/blas/base/matrix-triangle-enum2str/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
<!--

@license Apache-2.0

Copyright (c) 2024 The Stdlib Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

-->

# enum2str

> Return the BLAS matrix triangle string associated with a BLAS matrix triangle enumeration constant.

<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->

<section class="intro">

</section>

<!-- /.intro -->

<!-- Package usage documentation. -->

<section class="usage">

## Usage

```javascript
var enum2str = require( '@stdlib/blas/base/matrix-triangle-enum2str' );
```

#### enum2str( value )

Returns the BLAS matrix triangle string associated with a BLAS matrix triangle enumeration constant.

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

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

var s = enum2str( v );
// returns 'upper'
```

If unable to resolve a matrix triangle string, the function returns `null`.

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

</section>

<!-- /.usage -->

<!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="notes">

</section>

<!-- /.notes -->

<!-- Package usage examples. -->

<section class="examples">

## Examples

<!-- eslint no-undef: "error" -->

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

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

str = enum2str( str2enum( 'lower' ) );
// returns 'lower'
```

</section>

<!-- /.examples -->

<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="references">

</section>

<!-- /.references -->

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="links">

</section>

<!-- /.links -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var bench = require( '@stdlib/bench' );
var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
var str2enum = require( '@stdlib/blas/base/matrix-triangle-str2enum' );
var pkg = require( './../package.json' ).name;
var enum2str = require( './../lib' );


// MAIN //

bench( pkg, function benchmark( b ) {
var values;
var out;
var i;

values = [
str2enum( 'upper' ),
str2enum( 'lower' )
];

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
out = enum2str( values[ i%values.length ] );
if ( typeof out !== 'string' ) {
b.fail( 'should return a string' );
}
}
b.toc();
if ( !isString( out ) ) {
b.fail( 'should return a string' );
}
b.pass( 'benchmark finished' );
b.end();
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

{{alias}}( value )
Returns the BLAS matrix triangle string associated with a BLAS matrix
triangle enumeration constant.

Parameters
----------
value: integer
Matrix triangle enumeration constant.

Returns
-------
out: string|null
Matrix triangle string.

Examples
--------
> var out = {{alias}}( {{alias:@stdlib/blas/base/matrix-triangle-str2enum}}( 'upper' ) )
'upper'

See Also
--------
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
* @license Apache-2.0
*
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

// TypeScript Version: 4.1

/**
* Returns the BLAS matrix triangle string associated with a BLAS matrix triangle enumeration constant.
*
* @param value - enumeration constant
* @returns matrix triangle string
*
* @example
* var str2enum = require( '@stdlib/blas/base/matrix-triangle-str2enum' );
*
* var v = str2enum( 'upper' );
* // returns <number>
*
* var s = enum2str( v );
* // returns 'upper'
*/
declare function enum2str( value: number ): string | null;


// EXPORTS //

export = enum2str;
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* @license Apache-2.0
*
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import enum2str = require( './index' );


// TESTS //

// The function returns a string or null...
{
enum2str( 0 ); // $ExpectType string | null
}

// The compiler throws an error if not provided a number...
{
enum2str( '10' ); // $ExpectError
enum2str( true ); // $ExpectError
enum2str( false ); // $ExpectError
enum2str( null ); // $ExpectError
enum2str( undefined ); // $ExpectError
enum2str( [] ); // $ExpectError
enum2str( {} ); // $ExpectError
enum2str( ( x: number ): number => x ); // $ExpectError
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

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

var str = enum2str( str2enum( 'upper' ) );
console.log( str );
// => 'upper'

str = enum2str( str2enum( 'lower' ) );
console.log( str );
// => 'lower'
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

/**
* Return the BLAS matrix triangle string associated with a BLAS matrix triangle enumeration constant.
*
* @module @stdlib/blas/base/matrix-triangle-enum2str
*
* @example
* var str2enum = require( '@stdlib/blas/base/matrix-triangle-str2enum' );
* var enum2str = require( '@stdlib/blas/base/matrix-triangle-enum2str' );
*
* var v = str2enum( 'upper' );
* // returns <number>
*
* var s = enum2str( v );
* // returns 'upper'
*/

// MODULES //

var main = require( './main.js' );


// EXPORTS //

module.exports = main;
Loading
Loading