JSPM

@stdlib/ndarray-base-dtypes2signatures

0.0.6
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 21
  • Score
    100M100P100Q81463F
  • License Apache-2.0

Transform a list of array argument data types into a list of signatures.

Package Exports

  • @stdlib/ndarray-base-dtypes2signatures

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/ndarray-base-dtypes2signatures) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

dtypes2signatures

NPM version Build Status Coverage Status dependencies

Transform a list of array argument data types into a list of signatures.

Installation

npm install @stdlib/ndarray-base-dtypes2signatures

Usage

var dtypes2signatures = require( '@stdlib/ndarray-base-dtypes2signatures' );

dtypes2signatures( dtypes, nin, nout )

Transforms a list of array argument data types into a list of signatures, where nin is the number of input array arguments and nout is the number of output array arguments.

var dtypes = [ 'float32', 'float64' ];

var out = dtypes2signatures( dtypes, 1, 1 );
// returns [ '(float32) => (float64)' ]

out = dtypes2signatures( dtypes, 2, 0 );
// returns [ '(float32, float64) => ()' ]

out = dtypes2signatures( dtypes, 0, 2 );
// returns [ '() => (float32, float64)' ]

Examples

var dtypes2signatures = require( '@stdlib/ndarray-base-dtypes2signatures' );

var dtypes = [
    'float64', 'float64',
    'float64', 'generic',

    'float32', 'float32',
    'float32', 'float64',
    'float32', 'generic',

    'generic', 'generic',

    'int32', 'int32',
    'int32', 'uint32',
    'int32', 'float64',
    'int32', 'generic',

    'int16', 'int16',
    'int16', 'int32',
    'int16', 'uint16',
    'int16', 'uint32',
    'int16', 'float32',
    'int16', 'float64',
    'int16', 'generic',

    'int8', 'int8',
    'int8', 'int16',
    'int8', 'int32',
    'int8', 'uint8',
    'int8', 'uint8c',
    'int8', 'uint16',
    'int8', 'uint32',
    'int8', 'float32',
    'int8', 'float64',
    'int8', 'generic',

    'uint32', 'uint32',
    'uint32', 'float64',
    'uint32', 'generic',

    'uint16', 'int32',
    'uint16', 'uint16',
    'uint16', 'uint32',
    'uint16', 'float32',
    'uint16', 'float64',
    'uint16', 'generic',

    'uint8', 'int16',
    'uint8', 'int32',
    'uint8', 'uint8',
    'uint8', 'uint8c',
    'uint8', 'uint16',
    'uint8', 'uint32',
    'uint8', 'float32',
    'uint8', 'float64',
    'uint8', 'generic',

    'uint8c', 'int16',
    'uint8c', 'int32',
    'uint8c', 'uint8',
    'uint8c', 'uint8c',
    'uint8c', 'uint16',
    'uint8c', 'uint32',
    'uint8c', 'float32',
    'uint8c', 'float64',
    'uint8c', 'generic'
];

var sigs = dtypes2signatures( dtypes, 1, 1 );
console.log( sigs );

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright © 2016-2021. The Stdlib Authors.