/* * @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 /// import { Collection, AccessorArrayLike, TypedArray, BooleanArray } from '@stdlib/types/array'; /** * Returns a boolean indicating whether an element passes a test. * * @returns boolean indicating whether an element passes a test */ type Nullary = ( this: U ) => boolean; /** * Returns a boolean indicating whether an element passes a test. * * @param value - current array element * @returns boolean indicating whether an element passes a test */ type Unary = ( this: U, value: T ) => boolean; /** * Returns a boolean indicating whether an element passes a test. * * @param value - current array element * @param index - current array element index * @returns boolean indicating whether an element passes a test */ type Binary = ( this: U, value: T, index: number ) => boolean; /** * Returns a boolean indicating whether an element passes a test. * * @param value - current array element * @param index - current array element index * @param arr - input array * @returns boolean indicating whether an element passes a test */ type Ternary = ( this: U, value: T, index: number, arr: Collection | AccessorArrayLike ) => boolean; /** * Returns a boolean indicating whether an element passes a test. * * @param value - current array element * @param index - current array element index * @param arr - input array * @returns boolean indicating whether an element passes a test */ type Predicate = Nullary | Unary | Binary | Ternary; /** * Interface describing `cunanyBy`. */ interface CuAnyBy { /** * Cumulatively tests whether at least one element in a provided array passes a test implemented by a predicate function. * * @param x - input array * @param predicate - predicate function * @param thisArg - predicate function execution context * @returns output array * * @example * function isPositive( v ) { * return v > 0; * } * * var x = [ 0, 0, 0, 1, 0 ]; * * var y = cuanyBy( x, isPositive ); * // returns [ false, false, false, true, true ]; */ ( x: Collection | AccessorArrayLike, predicate: Predicate, thisArg?: ThisParameterType> ): Array; /** * Cumulatively tests whether at least one element in a provided array passes a test implemented by a predicate function and assigns the results to a provided output array. * * @param x - input array * @param y - output array * @param stride - output array stride * @param offset - output array offset * @param predicate - predicate function * @param thisArg - predicate function execution context * @returns output array * * @example * function isPositive( v ) { * return v > 0; * } * * var x = [ 0, 0, 0, 1, 0 ]; * var y = [ false, null, false, null, false, null, true, null, true, null ]; * * var arr = cuanyBy.assign( x, y, 2, 0, isPositive ); * // returns [ false, null, false, null, false, null, true, null, true, null ]; */ assign( x: Collection | AccessorArrayLike, out: Array, stride: number, offset: number, predicate: Predicate, thisArg?: ThisParameterType> ): Array; /** * Cumulatively tests whether at least one array element in a provided array passes a test implemented by a predicate function and assigns the results to the provided output array. * * @param x - input array * @param out - output array * @param stride - output array stride * @param offset - output array offset * @param predicate - test function * @param thisArg - execution context * @returns output array * * @example * var BooleanArray = require( './../../../../bool' ); * * function isPositive( v ) { * return ( v > 0 ); * } * var x = [ 0, 1, 0, 1, 0 ]; * var y = new BooleanArray( [ false, false, false, false, false, false, false, false, false, false ] ); * * var arr = cuanyBy.assign( x, y, 2, 0, isPositive ); * // returns * * var v = arr.get( 4 ); * // returns true */ assign( x: Collection | AccessorArrayLike, out: U, stride: number, offset: number, predicate: Predicate, thisArg?: ThisParameterType> ): U; /** * Cumulatively tests whether at least one element in a provided array passes a test implemented by a predicate function and assigns the results to a provided output array. * * @param x - input array * @param y - output array * @param stride - output array stride * @param offset - output array offset * @param predicate - predicate function * @param thisArg - predicate function execution context * @returns output array * * @example * function isPositive( v ) { * return v > 0; * } * * var x = [ 0, 0, 0, 1, 0 ]; * var y = [ false, null, false, null, false, null, true, null, true, null ]; * * var arr = cuanyBy.assign( x, y, 2, 0, isPositive ); * // returns [ false, null, false, null, false, null, true, null, true, null ]; */ assign( x: Collection | AccessorArrayLike, out: Collection | AccessorArrayLike, stride: number, offset: number, predicate: Predicate, thisArg?: ThisParameterType> ): Collection | AccessorArrayLike; } /** * Cumulatively tests whether at least one element in a provided array passes a test implemented by a predicate function. * * @param x - input array * @returns output array * * @example * function isPositive( value ) { * return ( value > 0 ); * } * * var x = [ 0, 0, 0, 1, 0 ]; * * var y = cuanyBy( x, isPositive ); * // returns [ false, false, false, true, true ] * * @example * function isPositive( value ) { * return ( value > 0 ); * } * * var x = [ 0, 0, 0, 1, 0 ]; * var y = [ false, null, false, null, false, null, false, null, false, null ]; * * var arr = cuanyBy.assign( x, y, 2, 0, isPositive ); * // returns [ false, null, false, null, false, null, true, null, true, null ] */ declare var cuanyBy: CuAnyBy; // EXPORTS // export = cuanyBy;