UNPKG

@stdlib/array

Version:
207 lines (178 loc) 9.91 kB
/* * @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. */ import cueveryBy = require( './index' ); const isPositive = ( v: number ): boolean => { return ( v > 0 ); }; // TESTS // // The function returns an array... { cueveryBy( [ 1, 2, 3, 4 ], isPositive ); // $ExpectType boolean[] cueveryBy<number>( [ 1, 2, 3, 4 ], isPositive ); // $ExpectType boolean[] cueveryBy( [ 1, 2, 3, 4 ], isPositive, {} ); // $ExpectType boolean[] cueveryBy<number>( [ 1, 2, 3, 4 ], isPositive, {} ); // $ExpectType boolean[] } // The compiler throws an error if the function is provided a first argument which is not an array-like object... { cueveryBy( 1, isPositive ); // $ExpectError cueveryBy( true, isPositive ); // $ExpectError cueveryBy( false, isPositive ); // $ExpectError cueveryBy( null, isPositive ); // $ExpectError cueveryBy( void 0, isPositive ); // $ExpectError cueveryBy( {}, isPositive ); // $ExpectError } // The compiler throws an error if the function is provided a second argument which is not function... { cueveryBy( [ 1, 2, 3, 4 ], 1 ); // $ExpectError cueveryBy( [], 1 ); // $ExpectError cueveryBy( [], true ); // $ExpectError cueveryBy( [], false ); // $ExpectError cueveryBy( [], null ); // $ExpectError cueveryBy( [], void 0 ); // $ExpectError cueveryBy( [], {} ); // $ExpectError } // The compiler throws an error if the function is provided an unsupported number of arguments... { cueveryBy(); // $ExpectError cueveryBy( [] ); // $ExpectError cueveryBy( [], [], 'throw', {} ); // $ExpectError } // Attached to the main export is an `assign` method which returns a collection... { const x = [ 1, 2, 3, 4 ]; cueveryBy.assign( x, [ 0, 0, 0, 0 ], 1, 0, isPositive ); // $ExpectType (number | boolean)[] cueveryBy.assign( x, new Float64Array( 4 ), 1, 0, isPositive ); // $ExpectType Float64Array cueveryBy.assign( x, new Float32Array( 4 ), 1, 0, isPositive ); // $ExpectType Float32Array cueveryBy.assign( x, new Int32Array( 4 ), 1, 0, isPositive ); // $ExpectType Int32Array cueveryBy.assign( x, new Int16Array( 4 ), 1, 0, isPositive ); // $ExpectType Int16Array cueveryBy.assign( x, new Int8Array( 4 ), 1, 0, isPositive ); // $ExpectType Int8Array cueveryBy.assign( x, new Uint32Array( 4 ), 1, 0, isPositive ); // $ExpectType Uint32Array cueveryBy.assign( x, new Uint16Array( 4 ), 1, 0, isPositive ); // $ExpectType Uint16Array cueveryBy.assign( x, new Uint8Array( 4 ), 1, 0, isPositive ); // $ExpectType Uint8Array cueveryBy.assign( x, new Uint8ClampedArray( 4 ), 1, 0, isPositive ); // $ExpectType Uint8ClampedArray cueveryBy.assign( x, [ 0, 0, 0, 0 ], 1, 0, isPositive, {} ); // $ExpectType (number | boolean)[] cueveryBy.assign( x, new Float64Array( 4 ), 1, 0, isPositive, {} ); // $ExpectType Float64Array cueveryBy.assign( x, new Float32Array( 4 ), 1, 0, isPositive, {} ); // $ExpectType Float32Array cueveryBy.assign( x, new Int32Array( 4 ), 1, 0, isPositive, {} ); // $ExpectType Int32Array cueveryBy.assign( x, new Int16Array( 4 ), 1, 0, isPositive, {} ); // $ExpectType Int16Array cueveryBy.assign( x, new Int8Array( 4 ), 1, 0, isPositive, {} ); // $ExpectType Int8Array cueveryBy.assign( x, new Uint32Array( 4 ), 1, 0, isPositive, {} ); // $ExpectType Uint32Array cueveryBy.assign( x, new Uint16Array( 4 ), 1, 0, isPositive, {} ); // $ExpectType Uint16Array cueveryBy.assign( x, new Uint8Array( 4 ), 1, 0, isPositive, {} ); // $ExpectType Uint8Array cueveryBy.assign( x, new Uint8ClampedArray( 4 ), 1, 0, isPositive, {} ); // $ExpectType Uint8ClampedArray } // The compiler throws an error if the `assign` method is provided a first argument which is not an array-like object... { const x = [ 1, 1, 0, 0, 0 ]; cueveryBy.assign( 1, x, 2, 0, isPositive ); // $ExpectError cueveryBy.assign( true, x, 2, 0, isPositive ); // $ExpectError cueveryBy.assign( false, x, 2, 0, isPositive ); // $ExpectError cueveryBy.assign( null, x, 2, 0, isPositive ); // $ExpectError cueveryBy.assign( void 0, x, 2, 0, isPositive ); // $ExpectError cueveryBy.assign( {}, x, 2, 0, isPositive ); // $ExpectError cueveryBy.assign( 1, x, 2, 0, isPositive, {} ); // $ExpectError cueveryBy.assign( true, x, 2, 0, isPositive, {} ); // $ExpectError cueveryBy.assign( false, x, 2, 0, isPositive, {} ); // $ExpectError cueveryBy.assign( null, x, 2, 0, isPositive, {} ); // $ExpectError cueveryBy.assign( void 0, x, 2, 0, isPositive, {} ); // $ExpectError cueveryBy.assign( {}, x, 2, 0, isPositive, {} ); // $ExpectError } // The compiler throws an error if the `assign` method is provided a second argument which is not an array-like object containing numbers... { const x = [ 1, 1, 0, 0, 0 ]; cueveryBy.assign( x, 1, 1, 0, isPositive ); // $ExpectError cueveryBy.assign( x, true, 1, 0, isPositive ); // $ExpectError cueveryBy.assign( x, false, 1, 0, isPositive ); // $ExpectError cueveryBy.assign( x, null, 1, 0, isPositive ); // $ExpectError cueveryBy.assign( x, void 0, 1, 0, isPositive ); // $ExpectError cueveryBy.assign( x, {}, 1, 0, isPositive ); // $ExpectError cueveryBy.assign( x, 1, 1, 0, isPositive, {} ); // $ExpectError cueveryBy.assign( x, true, 1, 0, isPositive, {} ); // $ExpectError cueveryBy.assign( x, false, 1, 0, isPositive, {} ); // $ExpectError cueveryBy.assign( x, null, 1, 0, isPositive, {} ); // $ExpectError cueveryBy.assign( x, void 0, 1, 0, isPositive, {} ); // $ExpectError cueveryBy.assign( x, {}, 1, 0, isPositive, {} ); // $ExpectError } // The compiler throws an error if the `assign` method is provided a third argument which is not a valid index... { const x = [ 1, 1, 0, 0, 0 ]; const y = [ false, null, false, null, false, null, false, null, false, null ]; cueveryBy.assign( x, y, '1', 1, isPositive ); // $ExpectError cueveryBy.assign( x, y, true, 1, isPositive ); // $ExpectError cueveryBy.assign( x, y, false, 1, isPositive ); // $ExpectError cueveryBy.assign( x, y, null, 1, isPositive ); // $ExpectError cueveryBy.assign( x, y, void 0, 1, isPositive ); // $ExpectError cueveryBy.assign( x, y, {}, 1, isPositive ); // $ExpectError cueveryBy.assign( x, y, [], 1, isPositive ); // $ExpectError cueveryBy.assign( x, y, ( x: number ): number => x, 1, isPositive ); // $ExpectError cueveryBy.assign( x, y, '1', 1, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, true, 1, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, false, 1, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, null, 1, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, void 0, 1, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, {}, 1, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, [], 1, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, ( x: number ): number => x, 1, isPositive, {} ); // $ExpectError } // The compiler throws an error if the `assign` method is provided a fourth argument which is not a number... { const x = [ 1, 1, 0, 0, 0 ]; const y = [ false, null, false, null, false, null, false, null, false, null ]; cueveryBy.assign( x, y, 0, '1', isPositive ); // $ExpectError cueveryBy.assign( x, y, 0, true, isPositive ); // $ExpectError cueveryBy.assign( x, y, 0, false, isPositive ); // $ExpectError cueveryBy.assign( x, y, 0, null, isPositive ); // $ExpectError cueveryBy.assign( x, y, 0, void 0, isPositive ); // $ExpectError cueveryBy.assign( x, y, 0, {}, isPositive ); // $ExpectError cueveryBy.assign( x, y, 0, [], isPositive ); // $ExpectError cueveryBy.assign( x, y, 0, '1', isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, 0, true, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, 0, false, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, 0, null, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, 0, void 0, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, 0, {}, isPositive, {} ); // $ExpectError cueveryBy.assign( x, y, 0, [], isPositive, {} ); // $ExpectError } // The compiler throws an error if the `assign` method is provided a fifth argument which is not a function... { const x = [ 1, 1, 0, 0, 0 ]; const y = [ false, null, false, null, false, null, false, null, false, null ]; cueveryBy.assign( x, y, 0, 1, '1' ); // $ExpectError cueveryBy.assign( x, y, 0, 1, true ); // $ExpectError cueveryBy.assign( x, y, 0, 1, false ); // $ExpectError cueveryBy.assign( x, y, 0, 1, null ); // $ExpectError cueveryBy.assign( x, y, 0, 1, void 0 ); // $ExpectError cueveryBy.assign( x, y, 0, 1, {} ); // $ExpectError cueveryBy.assign( x, y, 0, 1, [] ); // $ExpectError cueveryBy.assign( x, y, 0, 1, '1', {} ); // $ExpectError cueveryBy.assign( x, y, 0, 1, true, {} ); // $ExpectError cueveryBy.assign( x, y, 0, 1, false, {} ); // $ExpectError cueveryBy.assign( x, y, 0, 1, null, {} ); // $ExpectError cueveryBy.assign( x, y, 0, 1, void 0, {} ); // $ExpectError cueveryBy.assign( x, y, 0, 1, {}, {} ); // $ExpectError cueveryBy.assign( x, y, 0, 1, [], {} ); // $ExpectError } // The compiler throws an error if the `assign` method is provided an unsupported number of arguments... { cueveryBy.assign(); // $ExpectError cueveryBy.assign( [] ); // $ExpectError cueveryBy.assign( [], [] ); // $ExpectError cueveryBy.assign( [], [], 'throw' ); // $ExpectError cueveryBy.assign( [], [], 'throw', [] ); // $ExpectError cueveryBy.assign( [], [], 'throw', [], 1, 0, {} ); // $ExpectError }