Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jan 28, 2024
1 parent d6be433 commit cb39f17
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
20 changes: 20 additions & 0 deletions complex128/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,23 @@

/* eslint-disable max-lines */

import NAN = require( './../../../complex128/nan' );
import NUM_BYTES = require( './../../../complex128/num-bytes' );
import ZERO = require( './../../../complex128/zero' );

/**
* Interface describing the `complex128` namespace.
*/
interface Namespace {
/**
* Canonical double-precision complex floating-point NaN.
*
* @example
* var nan = ns.NAN;
* // returns <Complex128>
*/
NAN: typeof NAN;

/**
* Size (in bytes) of a 128-bit complex number.
*
Expand All @@ -34,6 +45,15 @@ interface Namespace {
* // returns 16
*/
NUM_BYTES: typeof NUM_BYTES;

/**
* Double-precision complex floating-point zero.
*
* @example
* var zero = ns.ZERO;
* // returns <Complex128>
*/
ZERO: typeof ZERO;
}

/**
Expand Down
20 changes: 20 additions & 0 deletions complex64/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,23 @@

/* eslint-disable max-lines */

import NAN = require( './../../../complex64/nan' );
import NUM_BYTES = require( './../../../complex64/num-bytes' );
import ZERO = require( './../../../complex64/zero' );

/**
* Interface describing the `complex64` namespace.
*/
interface Namespace {
/**
* Canonical single-precision complex floating-point NaN.
*
* @example
* var nan = ns.NAN;
* // returns <Complex64>
*/
NAN: typeof NAN;

/**
* Size (in bytes) of a 64-bit complex number.
*
Expand All @@ -34,6 +45,15 @@ interface Namespace {
* // returns 8
*/
NUM_BYTES: typeof NUM_BYTES;

/**
* Single-precision complex floating-point zero.
*
* @example
* var zero = ns.ZERO;
* // returns <Complex64>
*/
ZERO: typeof ZERO;
}

/**
Expand Down
10 changes: 10 additions & 0 deletions float32/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import EXPONENT_MASK = require( './../../../float32/exponent-mask' );
import MAX = require( './../../../float32/max' );
import MAX_SAFE_INTEGER = require( './../../../float32/max-safe-integer' );
import MIN_SAFE_INTEGER = require( './../../../float32/min-safe-integer' );
import NAN = require( './../../../float32/nan' );
import NINF = require( './../../../float32/ninf' );
import NUM_BYTES = require( './../../../float32/num-bytes' );
import PINF = require( './../../../float32/pinf' );
Expand Down Expand Up @@ -114,6 +115,15 @@ interface Namespace {
*/
MIN_SAFE_INTEGER: typeof MIN_SAFE_INTEGER;

/**
* Single-precision floating-point NaN.
*
* @example
* var nan = ns.NAN;
* // returns NaN
*/
NAN: typeof NAN;

/**
* Single-precision floating-point negative infinity.
*
Expand Down
10 changes: 10 additions & 0 deletions float64/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ import MIN_BASE10_EXPONENT = require( './../../../float64/min-base10-exponent' )
import MIN_BASE10_EXPONENT_SUBNORMAL = require( './../../../float64/min-base10-exponent-subnormal' );
import MIN_LN = require( './../../../float64/min-ln' );
import MIN_SAFE_INTEGER = require( './../../../float64/min-safe-integer' );
import NAN = require( './../../../float64/nan' );
import NINF = require( './../../../float64/ninf' );
import NUM_BYTES = require( './../../../float64/num-bytes' );
import PHI = require( './../../../float64/phi' );
Expand Down Expand Up @@ -463,6 +464,15 @@ interface Namespace {
*/
MIN_SAFE_INTEGER: typeof MIN_SAFE_INTEGER;

/**
* Double-precision floating-point NaN.
*
* @example
* var nan = ns.NAN;
* // returns NaN
*/
NAN: typeof NAN;

/**
* Double-precision floating-point negative infinity.
*
Expand Down

0 comments on commit cb39f17

Please sign in to comment.