/* * @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 { TypedIterator, TypedIterableIterator } from '@stdlib/types/iter'; import { Collection } from '@stdlib/types/array'; // Define a union type representing both iterable and non-iterable iterators: type Iterator = TypedIterator | TypedIterableIterator; /** * Map function invoked for each iterated value. * * @returns iterator value */ type Nullary = ( this: V ) => U; /** * Map function invoked for each iterated value. * * @param value - iterated value * @returns iterator value */ type Unary = ( this: V, value: T ) => U; /** * Map function invoked for each iterated value. * * @param value - iterated value * @param index - iterated value index * @returns iterator value */ type Binary = ( this: V, value: T, index: number ) => U; /** * Map function invoked for each iterated value. * * @param value - iterated value * @param index - iterated value index * @param src - source array-like object * @returns iterator value */ type Ternary = ( this: V, value: T, index: number, src: Collection ) => U; /** * Map function invoked for each iterated value. * * @param value - iterated value * @param index - iterated value index * @param src - source array-like object * @returns iterator value */ type MapFunction = Nullary | Unary | Binary | Ternary; /** * Fills an array-like object view from right to left with values returned from an iterator. * * @param iterator - source iterator * @param out - output array * @param mapFcn - function to invoke for each iterated value * @param thisArg - execution context * @throws third argument must be an integer (starting index) or a callback function * @returns output array * * @example * var randu = require( '@stdlib/random/iter/randu' ); * var Float64Array = require( '@stdlib/array/float64' ); * * var iter = randu({ * 'iter': 10 * }); * * var arr = iterator2arrayviewRight( iter, new Float64Array( 20 ) ); * // returns */ declare function iterator2arrayviewRight( iterator: Iterator, out: Collection, mapFcn?: MapFunction, thisArg?: ThisParameterType> ): Collection; /** * Fills an array-like object view from right to left with values returned from an iterator. * * @param iterator - source iterator * @param out - output array * @param begin - starting index (inclusive) (default: 0) * @param mapFcn - function to invoke for each iterated value * @param thisArg - execution context * @throws third argument must be an integer (starting index) or a callback function * @returns output array * * @example * var randu = require( '@stdlib/random/iter/randu' ); * var Float64Array = require( '@stdlib/array/float64' ); * * var iter = randu({ * 'iter': 10 * }); * * var arr = iterator2arrayviewRight( iter, new Float64Array( 20 ), 5 ); * // returns */ declare function iterator2arrayviewRight( iterator: Iterator, out: Collection, begin: number, mapFcn?: MapFunction, thisArg?: ThisParameterType> ): Collection; /** * Fills an array-like object view from right to left with values returned from an iterator. * * @param iterator - source iterator * @param out - output array * @param begin - starting index (inclusive) (default: 0) * @param end - ending index (non-inclusive) (default: out.length) * @param mapFcn - function to invoke for each iterated value * @param thisArg - execution context * @throws third argument must be an integer (starting index) or a callback function * @throws fourth argument must be an integer (ending index) or a callback function * @returns output array * * @example * var randu = require( '@stdlib/random/iter/randu' ); * var Float64Array = require( '@stdlib/array/float64' ); * * var iter = randu({ * 'iter': 10 * }); * * var arr = iterator2arrayviewRight( iter, new Float64Array( 20 ), 5, 8 ); * // returns */ declare function iterator2arrayviewRight( iterator: Iterator, out: Collection, begin: number, end: number, mapFcn?: MapFunction, thisArg?: ThisParameterType> ): Collection; // EXPORTS // export = iterator2arrayviewRight;