/* * @license Apache-2.0 * * Copyright (c) 2021 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 /// import { Collection } from '@stdlib/types/array'; /** * Returns the accessed value. * * @returns accessed value */ type NullaryCallback = ( this: W ) => V; /** * Returns the accessed value. * * @param value - array element value * @returns accessed value */ type UnaryCallback = ( this: W, value: U ) => V; /** * Returns the accessed value. * * @param value - array element value * @param idx - iteration index * @returns accessed value */ type BinaryCallback = ( this: W, value: U, idx: number ) => V; /** * Returns the accessed value. * * @param value - array element value * @param idx - iteration index * @param indices - strided indices (offset + idx*stride) * @returns accessed value */ type TernaryCallback = ( this: W, value: U, idx: number, indices: Array ) => V; /** * Returns the accessed value. * * @param value - array element value * @param idx - iteration index * @param indices - strided indices (offset + idx*stride) * @param arrays - input and output arrays * @returns accessed value */ type QuaternaryCallback = ( this: W, value: U, idx: number, indices: Array, arrays: [ Collection, Collection ] ) => V; /** * Returns the accessed value. * * @param value - array element value * @param idx - iteration index * @param indices - strided indices (offset + idx*stride) * @param arrays - input and output arrays * @returns accessed value */ type Callback = NullaryCallback | UnaryCallback | BinaryCallback | TernaryCallback | QuaternaryCallback; /** * Callback invoked for each indexed strided array element retrieved via a callback function. * * @param value - strided array element * @returns result */ type Unary = ( value: T ) => U; /** * Interface describing `mapBy`. */ interface Routine { /** * Applies a unary function to each element retrieved from a strided input array according to a callback function and assigns results to a strided output array. * * @param N - number of indexed elements * @param x - input array * @param strideX - `x` stride length * @param y - destination array * @param strideY - `y` stride length * @param fcn - unary function to apply to callback return values * @param clbk - callback function * @param thisArg - callback execution context * @returns `y` * * @example * var abs = require( '@stdlib/math/base/special/abs' ); * * function accessor( v ) { * return v * 2.0; * } * * var x = [ 1.0, -2.0, 3.0, -4.0, 5.0 ]; * var y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; * * mapBy( x.length, x, 1, y, 1, abs, accessor ); * // y => [ 2.0, 4.0, 6.0, 8.0, 10.0 ] */ ( N: number, x: Collection, strideX: number, y: Collection, strideY: number, fcn: Unary, clbk: Callback, thisArg?: ThisParameterType> ): Collection; /** * Applies a unary function to each element retrieved from a strided input array according to a callback function and assigns results to a strided output array using alternative indexing semantics. * * @param N - number of indexed elements * @param x - input array * @param strideX - `x` stride length * @param offsetX - starting index for `x` * @param y - destination array * @param strideY - `y` stride length * @param offsetY - starting index for `y` * @param fcn - unary function to apply to callback return values * @param clbk - callback function * @param thisArg - callback execution context * @returns `y` * * @example * var abs = require( '@stdlib/math/base/special/abs' ); * * function accessor( v ) { * return v * 2.0; * } * * var x = [ 1.0, -2.0, 3.0, -4.0, 5.0 ]; * var y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; * * mapBy.ndarray( x.length, x, 1, 0, y, 1, 0, abs, accessor ); * // y => [ 2.0, 4.0, 6.0, 8.0, 10.0 ] */ ndarray( N: number, x: Collection, strideX: number, offsetX: number, y: Collection, strideY: number, offsetY: number, fcn: Unary, clbk: Callback, thisArg?: ThisParameterType> ): Collection; } /** * Applies a unary function to each element retrieved from a strided input array according to a callback function and assigns results to a strided output array. * * @param N - number of indexed elements * @param x - input array * @param strideX - `x` stride length * @param y - destination array * @param strideY - `y` stride length * @param fcn - unary function to apply to callback return values * @param clbk - callback function * @param thisArg - callback execution context * @returns `y` * * @example * var abs = require( '@stdlib/math/base/special/abs' ); * * function accessor( v ) { * return v * 2.0; * } * * var x = [ 1.0, -2.0, 3.0, -4.0, 5.0 ]; * var y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; * * mapBy( x.length, x, 1, y, 1, abs, accessor ); * // y => [ 2.0, 4.0, 6.0, 8.0, 10.0 ] * * @example * var abs = require( '@stdlib/math/base/special/abs' ); * * function accessor( v ) { * return v * 2.0; * } * * var x = [ 1.0, -2.0, 3.0, -4.0, 5.0 ]; * var y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; * * mapBy.ndarray( x.length, x, 1, 0, y, 1, 0, abs, accessor ); * // y => [ 2.0, 4.0, 6.0, 8.0, 10.0 ] */ declare var mapBy: Routine; // EXPORTS // export = mapBy;