Test if a value is an array-like object containing only integers.
import isIntegerArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-integer-array@deno/mod.js';
You can also import the following named exports from the package:
import { objects, primitives } from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-integer-array@deno/mod.js';
Tests if a value
is an array-like object containing only integer
values.
import Number from 'https://cdn.jsdelivr.net/gh/stdlib-js/number-ctor@deno/mod.js';
var bool = isIntegerArray( [ -3, new Number(3) ] );
// returns true
bool = isIntegerArray( [ -3, 'abc' ] );
// returns false
Tests if a value
is an array-like object containing only primitive integer
values.
import Number from 'https://cdn.jsdelivr.net/gh/stdlib-js/number-ctor@deno/mod.js';
var bool = isIntegerArray.primitives( [ -1.0, 0.0, 4.0 ] );
// returns true
bool = isIntegerArray.primitives( [ -1.0, 2.2 ] );
// returns false
bool = isIntegerArray.primitives( [ -3.0, new Number(2.0) ] );
// returns false
Tests if a value
is an array-like object containing only Number
objects having integer
values.
import Number from 'https://cdn.jsdelivr.net/gh/stdlib-js/number-ctor@deno/mod.js';
var bool = isIntegerArray.objects( [ new Number(-1.0), new Number(2.0) ] );
// returns true
bool = isIntegerArray.objects( [ -1.0, 0.0, 1.0 ] );
// returns false
bool = isIntegerArray.objects( [ -3.0, new Number(1.0) ] );
// returns false
import Number from 'https://cdn.jsdelivr.net/gh/stdlib-js/number-ctor@deno/mod.js';
import isIntegerArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-integer-array@deno/mod.js';
var bool = isIntegerArray( [ -5, 0, 2, 5 ] );
// returns true
bool = isIntegerArray( [ -4, -3, 1, 3 ] );
// returns true
bool = isIntegerArray( [ -1, new Number( -6 ), 2 ] );
// returns true
bool = isIntegerArray( [ -1, 'abc', 3 ] );
// returns false
bool = isIntegerArray( [ -2.3, 0, 3 ] );
// returns false
bool = isIntegerArray( [] );
// returns false
@stdlib/assert/is-array
: test if a value is an array.
This package is part of stdlib, a standard library with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2022. The Stdlib Authors.