Skip to content

feat: add blas/base/diagonal-type-* #2498

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 8 commits into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
121 changes: 121 additions & 0 deletions lib/node_modules/@stdlib/blas/base/diagonal-type-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 diagonal type string associated with a BLAS diagonal type 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/diagonal-type-enum2str' );
```

#### enum2str( value )

Returns the BLAS diagonal type string associated with a BLAS diagonal type enumeration constant.

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

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

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

If unable to resolve a diagonal type 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/diagonal-type-str2enum' );
var enum2str = require( '@stdlib/blas/base/diagonal-type-enum2str' );

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

str = enum2str( str2enum( 'non-unit' ) );
// returns 'non-unit'
```

</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/diagonal-type-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( 'unit' ),
str2enum( 'non-unit' )
];

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,23 @@

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

Parameters
----------
value: integer
Diagonal type enumeration constant.

Returns
-------
out: string|null
Diagonal type string.

Examples
--------
> var out = {{alias}}( {{alias:@stdlib/blas/base/diagonal-type-str2enum}}( 'unit' ) )
'unit'

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 diagonal type string associated with a BLAS diagonal type enumeration constant.
*
* @param value - enumeration constant
* @returns diagonal type string
*
* @example
* var str2enum = require( '@stdlib/blas/base/diagonal-type-str2enum' );
*
* var v = str2enum( 'unit' );
* // returns <number>
*
* var s = enum2str( v );
* // returns 'unit'
*/
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/diagonal-type-str2enum' );
var enum2str = require( './../lib' );

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

str = enum2str( str2enum( 'non-unit' ) );
console.log( str );
// => 'non-unit'
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 diagonal type string associated with a BLAS diagonal type enumeration constant.
*
* @module @stdlib/blas/base/diagonal-type-enum2str
*
* @example
* var str2enum = require( '@stdlib/blas/base/diagonal-type-str2enum' );
* var enum2str = require( '@stdlib/blas/base/diagonal-type-enum2str' );
*
* var v = str2enum( 'unit' );
* // returns <number>
*
* var s = enum2str( v );
* // returns 'unit'
*/

// MODULES //

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


// EXPORTS //

module.exports = main;
Loading
Loading