JSPM

@stdlib/assert-is-complex-typed-array-like

0.0.7
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 33
  • Score
    100M100P100Q67559F
  • License Apache-2.0

Test if a value is complex-typed-array-like.

Package Exports

  • @stdlib/assert-is-complex-typed-array-like
  • @stdlib/assert-is-complex-typed-array-like/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/assert-is-complex-typed-array-like) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

isComplexTypedArrayLike

NPM version Build Status Coverage Status

Test if a value is complex-typed-array-like.

Installation

npm install @stdlib/assert-is-complex-typed-array-like

Usage

var isComplexTypedArrayLike = require( '@stdlib/assert-is-complex-typed-array-like' );

isComplexTypedArrayLike( value )

Tests if a value is complex-typed-array-like.

var Complex64Array = require( '@stdlib/array-complex64' );

var bool = isComplexTypedArrayLike( new Complex64Array() );
// returns true

bool = isComplexTypedArrayLike({
    'length': 10,
    'byteOffset': 0,
    'byteLength': 10,
    'BYTES_PER_ELEMENT': 4,
    'get': function get() {},
    'set': function set() {}
});
// returns true

Examples

var Complex64Array = require( '@stdlib/array-complex64' );
var isComplexTypedArrayLike = require( '@stdlib/assert-is-complex-typed-array-like' );

var bool;
var arr;

arr = {
    'BYTES_PER_ELEMENT': 8,
    'length': 10,
    'byteOffset': 0,
    'byteLength': 10,
    'get': function get() {},
    'set': function set() {}
};
bool = isComplexTypedArrayLike( arr );
// returns true

bool = isComplexTypedArrayLike( new Complex64Array( 4 ) );
// returns true

bool = isComplexTypedArrayLike( [] );
// returns false

bool = isComplexTypedArrayLike( {} );
// returns false

bool = isComplexTypedArrayLike( null );
// returns false

bool = isComplexTypedArrayLike( 'beep' );
// returns false

bool = isComplexTypedArrayLike( function foo( a, b ) {} );
// returns false

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, 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.

Community

Chat


License

See LICENSE.

Copyright © 2016-2022. The Stdlib Authors.