Options
All
  • Public
  • Public/Protected
  • All
Menu

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

Index

Functions

Functions

Export assignment isComplex64

  • isComplex64(value: any): boolean
  • Tests if a value is a 64-bit complex number.

    Parameters

    • value: any

      value to test

    Returns boolean

    boolean indicating if a value is a 64-bit complex number

    Example

    var Complex64 = require( `@stdlib/complex/float32` );
    
    var x = new Complex64( 4.0, 2.0 );
    
    var bool = isComplex64( x );
    // returns true