diff --git a/lib/node_modules/@stdlib/assert/is-ndarray-like-with-data-type/docs/types/index.d.ts b/lib/node_modules/@stdlib/assert/is-ndarray-like-with-data-type/docs/types/index.d.ts index c0e104a319ca..3066bea9600a 100644 --- a/lib/node_modules/@stdlib/assert/is-ndarray-like-with-data-type/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/assert/is-ndarray-like-with-data-type/docs/types/index.d.ts @@ -18,6 +18,10 @@ // TypeScript Version: 4.1 +/// + +import { DataType } from '@stdlib/types/ndarray'; + /** * Tests if a value is an ndarray-like object having a specified data type. * @@ -36,7 +40,7 @@ * bool = isndarrayLikeWithDataType( [], 'generic' ); * // returns false */ -declare function isndarrayLikeWithDataType( v: any, dtype: any ): boolean; +declare function isndarrayLikeWithDataType( v: any, dtype: DataType ): boolean; // EXPORTS // diff --git a/lib/node_modules/@stdlib/ndarray/base/dtype-alignment/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/base/dtype-alignment/docs/types/index.d.ts index ef72801db789..d6c802c59909 100644 --- a/lib/node_modules/@stdlib/ndarray/base/dtype-alignment/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/base/dtype-alignment/docs/types/index.d.ts @@ -18,6 +18,10 @@ // TypeScript Version: 4.1 +/// + +import { DataType } from '@stdlib/types/ndarray'; + /** * Interface describing an object mapping data type strings to alignments (in bytes). */ @@ -39,7 +43,7 @@ interface Table { * out = dtypeAlignment( 'generic' ); * // returns null */ -declare function dtypeAlignment( dtype: any ): number | null; +declare function dtypeAlignment( dtype: DataType ): number | null; /** * Returns an object mapping data type strings to alignments. diff --git a/lib/node_modules/@stdlib/utils/real-max/README.md b/lib/node_modules/@stdlib/utils/real-max/README.md index 1bb58b4f09bb..aaafc40a34d2 100644 --- a/lib/node_modules/@stdlib/utils/real-max/README.md +++ b/lib/node_modules/@stdlib/utils/real-max/README.md @@ -51,9 +51,9 @@ var m = realmax( 'float64' ); The following numeric **real** types are supported: -- `float64`: double-precision floating-point numbers -- `float32`: single-precision floating-point numbers - `float16`: half-precision floating-point numbers +- `float32`: single-precision floating-point numbers +- `float64`: double-precision floating-point numbers diff --git a/lib/node_modules/@stdlib/utils/real-max/docs/repl.txt b/lib/node_modules/@stdlib/utils/real-max/docs/repl.txt index 39386b8af619..b8f71445d1c7 100644 --- a/lib/node_modules/@stdlib/utils/real-max/docs/repl.txt +++ b/lib/node_modules/@stdlib/utils/real-max/docs/repl.txt @@ -5,9 +5,9 @@ The following numeric real types are supported: - - float64: double-precision floating-point numbers. - - float32: single-precision floating-point numbers. - float16: half-precision floating-point numbers. + - float32: single-precision floating-point numbers. + - float64: double-precision floating-point numbers. Parameters ---------- diff --git a/lib/node_modules/@stdlib/utils/real-min/README.md b/lib/node_modules/@stdlib/utils/real-min/README.md index 6d7b5773070e..a847ca4b9a9a 100644 --- a/lib/node_modules/@stdlib/utils/real-min/README.md +++ b/lib/node_modules/@stdlib/utils/real-min/README.md @@ -51,9 +51,9 @@ var m = realmin( 'float64' ); The following numeric **real** types are supported: -- `float64`: double-precision floating-point numbers -- `float32`: single-precision floating-point numbers - `float16`: half-precision floating-point numbers +- `float32`: single-precision floating-point numbers +- `float64`: double-precision floating-point numbers diff --git a/lib/node_modules/@stdlib/utils/real-min/docs/repl.txt b/lib/node_modules/@stdlib/utils/real-min/docs/repl.txt index 6fb2e998e204..1a332ce66252 100644 --- a/lib/node_modules/@stdlib/utils/real-min/docs/repl.txt +++ b/lib/node_modules/@stdlib/utils/real-min/docs/repl.txt @@ -5,9 +5,9 @@ The following numeric real types are supported: - - float64: double-precision floating-point numbers. - - float32: single-precision floating-point numbers. - float16: half-precision floating-point numbers. + - float32: single-precision floating-point numbers. + - float64: double-precision floating-point numbers. Parameters ---------- diff --git a/lib/node_modules/@stdlib/utils/safe-int-max/README.md b/lib/node_modules/@stdlib/utils/safe-int-max/README.md index b96a4d194c43..aa9b0bd2fb69 100644 --- a/lib/node_modules/@stdlib/utils/safe-int-max/README.md +++ b/lib/node_modules/@stdlib/utils/safe-int-max/README.md @@ -51,9 +51,9 @@ var m = safeintmax( 'float64' ); The following numeric **real** types are supported: -- `float64`: double-precision floating-point numbers -- `float32`: single-precision floating-point numbers - `float16`: half-precision floating-point numbers +- `float32`: single-precision floating-point numbers +- `float64`: double-precision floating-point numbers diff --git a/lib/node_modules/@stdlib/utils/safe-int-max/docs/repl.txt b/lib/node_modules/@stdlib/utils/safe-int-max/docs/repl.txt index 5e5a0a72ff1e..d7aac3be3d1f 100644 --- a/lib/node_modules/@stdlib/utils/safe-int-max/docs/repl.txt +++ b/lib/node_modules/@stdlib/utils/safe-int-max/docs/repl.txt @@ -5,9 +5,9 @@ The following numeric real types are supported: - - float64: double-precision floating-point numbers. - - float32: single-precision floating-point numbers. - float16: half-precision floating-point numbers. + - float32: single-precision floating-point numbers. + - float64: double-precision floating-point numbers. Parameters ---------- diff --git a/lib/node_modules/@stdlib/utils/safe-int-min/README.md b/lib/node_modules/@stdlib/utils/safe-int-min/README.md index 950a794dd0c2..7c9a0724fba1 100644 --- a/lib/node_modules/@stdlib/utils/safe-int-min/README.md +++ b/lib/node_modules/@stdlib/utils/safe-int-min/README.md @@ -51,9 +51,9 @@ var m = safeintmin( 'float64' ); The following numeric **real** types are supported: -- `float64`: double-precision floating-point numbers -- `float32`: single-precision floating-point numbers - `float16`: half-precision floating-point numbers +- `float32`: single-precision floating-point numbers +- `float64`: double-precision floating-point numbers diff --git a/lib/node_modules/@stdlib/utils/safe-int-min/docs/repl.txt b/lib/node_modules/@stdlib/utils/safe-int-min/docs/repl.txt index cb70f704b3d1..2d14274c93e7 100644 --- a/lib/node_modules/@stdlib/utils/safe-int-min/docs/repl.txt +++ b/lib/node_modules/@stdlib/utils/safe-int-min/docs/repl.txt @@ -5,9 +5,9 @@ The following numeric real types are supported: - - float64: double-precision floating-point numbers. - - float32: single-precision floating-point numbers. - float16: half-precision floating-point numbers. + - float32: single-precision floating-point numbers. + - float64: double-precision floating-point numbers. Parameters ---------- diff --git a/lib/node_modules/@stdlib/utils/size-of/README.md b/lib/node_modules/@stdlib/utils/size-of/README.md index a1a55e9f736b..87bcc8032ce4 100644 --- a/lib/node_modules/@stdlib/utils/size-of/README.md +++ b/lib/node_modules/@stdlib/utils/size-of/README.md @@ -51,9 +51,9 @@ var s = sizeOf( 'int8' ); The following numeric types are supported: -- `float64`: double-precision floating-point numbers -- `float32`: single-precision floating-point numbers - `float16`: half-precision floating-point numbers +- `float32`: single-precision floating-point numbers +- `float64`: double-precision floating-point numbers - `int32`: 32-bit two's complement signed integers - `uint32`: 32-bit unsigned integers - `int16`: 16-bit two's complement signed integers diff --git a/lib/node_modules/@stdlib/utils/size-of/docs/repl.txt b/lib/node_modules/@stdlib/utils/size-of/docs/repl.txt index 9ac3ce092a19..872efea94e46 100644 --- a/lib/node_modules/@stdlib/utils/size-of/docs/repl.txt +++ b/lib/node_modules/@stdlib/utils/size-of/docs/repl.txt @@ -5,9 +5,9 @@ The following numeric types are supported: - - float64: double-precision floating-point numbers. - - float32: single-precision floating-point numbers. - float16: half-precision floating-point numbers. + - float32: single-precision floating-point numbers. + - float64: double-precision floating-point numbers. - int32: 32-bit two's complement signed integers. - uint32: 32-bit unsigned integers. - int16: 16-bit two's complement signed integers. diff --git a/lib/node_modules/@stdlib/utils/type-max/README.md b/lib/node_modules/@stdlib/utils/type-max/README.md index 0f19094fd6fe..b1dd69f0956f 100644 --- a/lib/node_modules/@stdlib/utils/type-max/README.md +++ b/lib/node_modules/@stdlib/utils/type-max/README.md @@ -51,9 +51,9 @@ var m = typemax( 'int8' ); The following numeric types are supported: -- `float64`: double-precision floating-point numbers -- `float32`: single-precision floating-point numbers - `float16`: half-precision floating-point numbers +- `float32`: single-precision floating-point numbers +- `float64`: double-precision floating-point numbers - `int32`: 32-bit two's complement signed integers - `uint32`: 32-bit unsigned integers - `int16`: 16-bit two's complement signed integers diff --git a/lib/node_modules/@stdlib/utils/type-max/docs/repl.txt b/lib/node_modules/@stdlib/utils/type-max/docs/repl.txt index 53de58fc7334..6bf7dd4af974 100644 --- a/lib/node_modules/@stdlib/utils/type-max/docs/repl.txt +++ b/lib/node_modules/@stdlib/utils/type-max/docs/repl.txt @@ -4,9 +4,9 @@ The following numeric types are supported: - - float64: double-precision floating-point numbers. - - float32: single-precision floating-point numbers. - float16: half-precision floating-point numbers. + - float32: single-precision floating-point numbers. + - float64: double-precision floating-point numbers. - int32: 32-bit two's complement signed integers. - uint32: 32-bit unsigned integers. - int16: 16-bit two's complement signed integers. diff --git a/lib/node_modules/@stdlib/utils/type-min/README.md b/lib/node_modules/@stdlib/utils/type-min/README.md index 055548bf43b9..8bfae911609a 100644 --- a/lib/node_modules/@stdlib/utils/type-min/README.md +++ b/lib/node_modules/@stdlib/utils/type-min/README.md @@ -51,9 +51,9 @@ var m = typemin( 'int8' ); The following numeric types are supported: -- `float64`: double-precision floating-point numbers -- `float32`: single-precision floating-point numbers - `float16`: half-precision floating-point numbers +- `float32`: single-precision floating-point numbers +- `float64`: double-precision floating-point numbers - `int32`: 32-bit two's complement signed integers - `uint32`: 32-bit unsigned integers - `int16`: 16-bit two's complement signed integers diff --git a/lib/node_modules/@stdlib/utils/type-min/docs/repl.txt b/lib/node_modules/@stdlib/utils/type-min/docs/repl.txt index ad9efa3e1ac0..61531ccfa1dd 100644 --- a/lib/node_modules/@stdlib/utils/type-min/docs/repl.txt +++ b/lib/node_modules/@stdlib/utils/type-min/docs/repl.txt @@ -4,9 +4,9 @@ The following numeric types are supported: - - float64: double-precision floating-point numbers. - - float32: single-precision floating-point numbers. - float16: half-precision floating-point numbers. + - float32: single-precision floating-point numbers. + - float64: double-precision floating-point numbers. - int32: 32-bit two's complement signed integers. - uint32: 32-bit unsigned integers. - int16: 16-bit two's complement signed integers.