Options
All
  • Public
  • Public/Protected
  • All
Menu

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

Index

Functions

Functions

isComplex64Array

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

    Parameters

    • value: any

      value to test

    Returns value is Complex64Array

    boolean indicating whether value is a Complex64Array

    Example

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

    Example

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