Skip to content

Commit 83044a1

Browse files
stdlib-botkgryte
andauthored
docs: update namespace TypeScript declarations
PR-URL: #2465 Co-authored-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Athan Reines <kgryte@gmail.com> Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
1 parent a3132d2 commit 83044a1

File tree

1 file changed

+0
-60
lines changed
  • lib/node_modules/@stdlib/array/docs/types

1 file changed

+0
-60
lines changed

lib/node_modules/@stdlib/array/docs/types/index.d.ts

Lines changed: 0 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -521,21 +521,6 @@ interface Namespace {
521521
/**
522522
* Creates an uninitialized array having a specified length.
523523
*
524-
* The function recognizes the following data types:
525-
*
526-
* - `float64`: double-precision floating-point numbers (IEEE 754)
527-
* - `float32`: single-precision floating-point numbers (IEEE 754)
528-
* - `complex128`: double-precision complex floating-point numbers
529-
* - `complex64`: single-precision complex floating-point numbers
530-
* - `int32`: 32-bit two's complement signed integers
531-
* - `uint32`: 32-bit unsigned integers
532-
* - `int16`: 16-bit two's complement signed integers
533-
* - `uint16`: 16-bit unsigned integers
534-
* - `int8`: 8-bit two's complement signed integers
535-
* - `uint8`: 8-bit unsigned integers
536-
* - `uint8c`: 8-bit unsigned integers clamped to `0-255`
537-
* - `generic`: generic JavaScript values
538-
*
539524
* ## Notes
540525
*
541526
* - In browser environments, the function always returns zero-filled arrays.
@@ -565,21 +550,6 @@ interface Namespace {
565550
* - If `dtype` is `'generic'`, the function always returns a zero-filled array.
566551
* - In Node.js versions `>=3.0.0`, the underlying memory of returned typed arrays is **not** initialized. Memory contents are unknown and may contain **sensitive** data.
567552
*
568-
* The function recognizes the following data types:
569-
*
570-
* - `float64`: double-precision floating-point numbers (IEEE 754)
571-
* - `float32`: single-precision floating-point numbers (IEEE 754)
572-
* - `complex128`: double-precision complex floating-point numbers
573-
* - `complex64`: single-precision complex floating-point numbers
574-
* - `int32`: 32-bit two's complement signed integers
575-
* - `uint32`: 32-bit unsigned integers
576-
* - `int16`: 16-bit two's complement signed integers
577-
* - `uint16`: 16-bit unsigned integers
578-
* - `int8`: 8-bit two's complement signed integers
579-
* - `uint8`: 8-bit unsigned integers
580-
* - `uint8c`: 8-bit unsigned integers clamped to `0-255`
581-
* - `generic`: generic JavaScript values
582-
*
583553
* @param x - input array from which to derive the output array length
584554
* @param dtype - data type
585555
* @returns empty array
@@ -723,21 +693,6 @@ interface Namespace {
723693
/**
724694
* Creates a filled array having a specified length.
725695
*
726-
* The function recognizes the following data types:
727-
*
728-
* - `float64`: double-precision floating-point numbers (IEEE 754)
729-
* - `float32`: single-precision floating-point numbers (IEEE 754)
730-
* - `complex128`: double-precision complex floating-point numbers
731-
* - `complex64`: single-precision complex floating-point numbers
732-
* - `int32`: 32-bit two's complement signed integers
733-
* - `uint32`: 32-bit unsigned integers
734-
* - `int16`: 16-bit two's complement signed integers
735-
* - `uint16`: 16-bit unsigned integers
736-
* - `int8`: 8-bit two's complement signed integers
737-
* - `uint8`: 8-bit unsigned integers
738-
* - `uint8c`: 8-bit unsigned integers clamped to `0-255`
739-
* - `generic`: generic JavaScript values
740-
*
741696
* @param length - array length
742697
* @param value - fill value
743698
* @param dtype - data type (default: 'float64')
@@ -756,21 +711,6 @@ interface Namespace {
756711
/**
757712
* Creates a filled array having the same length and data type as a provided input array.
758713
*
759-
* The function supports the following data types:
760-
*
761-
* - `float64`: double-precision floating-point numbers (IEEE 754)
762-
* - `float32`: single-precision floating-point numbers (IEEE 754)
763-
* - `complex128`: double-precision complex floating-point numbers
764-
* - `complex64`: single-precision complex floating-point numbers
765-
* - `int32`: 32-bit two's complement signed integers
766-
* - `uint32`: 32-bit unsigned integers
767-
* - `int16`: 16-bit two's complement signed integers
768-
* - `uint16`: 16-bit unsigned integers
769-
* - `int8`: 8-bit two's complement signed integers
770-
* - `uint8`: 8-bit unsigned integers
771-
* - `uint8c`: 8-bit unsigned integers clamped to `0-255`
772-
* - `generic`: generic JavaScript values
773-
*
774714
* @param x - input array from which to derive the output array length
775715
* @param value - fill value
776716
* @param dtype - data type

0 commit comments

Comments
 (0)