Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "assert/is-complex64array/docs/types/index.d"

Index

Functions

Functions

Export assignment isComplex64Array

  • isComplex64Array(value: any): boolean
  • Tests if a value is a Complex64Array.

    Parameters

    • value: any

      value to test

    Returns boolean

    boolean indicating whether value is a Complex64Array

    Example

    var bool = isComplex64Array( new Complex64Array( 10 ) );
    // returns true

    Example

    var bool = isComplex64Array( [] );
    // returns false