@stdlib/strided
Version:
Strided.
69 lines (60 loc) • 2.27 kB
TypeScript
/*
* @license Apache-2.0
*
* Copyright (c) 2022 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
/// <reference types="@stdlib/types"/>
import { ArrayLike } from '@stdlib/types/array';
/**
* Interface describing function options.
*/
interface Options {
/**
* Boolean flag indicating whether to return signatures as a list of enumeration constants.
*/
enums?: boolean;
}
/**
* Generates a list of masked unary interface signatures from strided array data types.
*
* ## Notes
*
* - The function returns a strided array having a stride length of `3` (i.e., every `3` elements define a masked unary interface signature).
* - For each signature (i.e., set of three consecutive non-overlapping strided array elements), the first element is the input data type, the second element is the mask data type, and the last element is the return data type.
* - All signatures follow type promotion rules.
* - The mask array data type is always `uint8`.
*
* @param dtypes1 - list of supported data types for the first argument
* @param dtypes2 - list of supported data types for the output argument
* @param options - options
* @param options.enums - boolean flag indicating whether to return signatures as a list of enumeration constants
* @throws must provide recognized data types
* @returns strided array containing masked unary interface signatures
*
* @example
* var dtypes = [
* 'float64',
* 'float32',
* 'int32',
* 'uint8'
* ];
*
* var sigs = signatures( dtypes, dtypes );
* // e.g., returns [ 'float32', 'uint8', 'float32', ... ]
*/
declare function signatures( dtypes1: ArrayLike<any>, dtypes2: ArrayLike<any>, options?: Options ): ArrayLike<string | number>;
// EXPORTS //
export = signatures;