Base complex number assert functions.
var assert = require( '@stdlib/complex/base/assert' );Namespace containing "base" complex number assert functions.
var ns = assert;
// returns {...}The namespace contains the following functions:
isEqual( z1, z2 ): test whether two double-precision complex floating-point numbers are equal.isEqualf( z1, z2 ): test whether two single-precision complex floating-point numbers are equal.isNotEqual( z1, z2 ): test whether two double-precision complex floating-point numbers are not equal.isNotEqualf( z1, z2 ): test whether two single-precision complex floating-point numbers are not equal.isSameValueZero( z1, z2 ): test whether two double-precision complex floating-point numbers are the same value.isSameValueZerof( z1, z2 ): test whether two single-precision complex floating-point numbers are the same value.isSameValue( z1, z2 ): test whether two double-precision complex floating-point numbers are the same value.isSameValuef( z1, z2 ): test whether two single-precision complex floating-point numbers are the same value.
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/complex/base/assert' );
console.log( objectKeys( ns ) );