Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions lib/node_modules/@stdlib/ndarray/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1935,7 +1935,7 @@ interface Namespace {
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns `false`-filled array
* @returns `false`-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand Down Expand Up @@ -3082,12 +3082,12 @@ interface Namespace {
minmaxViewBufferIndex: typeof minmaxViewBufferIndex;

/**
* Creates a NaN-filled array having a specified shape and data type.
* Creates a NaN-filled ndarray having a specified shape and data type.
*
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns NaN-filled array
* @returns NaN-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand All @@ -3101,10 +3101,10 @@ interface Namespace {
nans: typeof nans;

/**
* Creates a NaN-filled array having the same shape and data type as a provided input ndarray.
* Creates a NaN-filled ndarray having the same shape and data type as a provided input ndarray.
*
* @param x - input array
* @returns NaN-filled array
* @returns NaN-filled ndarray
*
* @example
* var getShape = require( '@stdlib/ndarray/shape' );
Expand Down Expand Up @@ -3501,12 +3501,12 @@ interface Namespace {
nullaryBlockSize: typeof nullaryBlockSize;

/**
* Creates a null-filled array having a specified shape and data type.
* Creates a null-filled ndarray having a specified shape and data type.
*
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns null-filled array
* @returns null-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand All @@ -3520,10 +3520,10 @@ interface Namespace {
nulls: typeof nulls;

/**
* Creates a null-filled array having the same shape and data type as a provided input ndarray.
* Creates a null-filled ndarray having the same shape and data type as a provided input ndarray.
*
* @param x - input array
* @returns null-filled array
* @returns null-filled ndarray
*
* @example
* var getShape = require( '@stdlib/ndarray/shape' );
Expand Down Expand Up @@ -3594,12 +3594,12 @@ interface Namespace {
offset: typeof offset;

/**
* Creates a ones-filled array having a specified shape and data type.
* Creates a ones-filled ndarray having a specified shape and data type.
*
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns ones-filled array
* @returns ones-filled ndarray
*
* @example
* var getShape = require( '@stdlib/ndarray/shape' );
Expand All @@ -3617,10 +3617,10 @@ interface Namespace {
ones: typeof ones;

/**
* Creates a ones-filled array having the same shape and data type as a provided input ndarray.
* Creates a ones-filled ndarray having the same shape and data type as a provided input ndarray.
*
* @param x - input array
* @returns ones-filled array
* @returns ones-filled ndarray
*
* @example
* var getShape = require( '@stdlib/ndarray/shape' );
Expand Down Expand Up @@ -5590,7 +5590,7 @@ interface Namespace {
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns `true`-filled array
* @returns `true`-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand Down Expand Up @@ -6272,12 +6272,12 @@ interface Namespace {
wrapIndex: typeof wrapIndex;

/**
* Creates a zero-filled array having a specified shape and data type.
* Creates a zero-filled ndarray having a specified shape and data type.
*
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns zero-filled array
* @returns zero-filled ndarray
*
* @example
* var getShape = require( '@stdlib/ndarray/shape' );
Expand All @@ -6295,10 +6295,10 @@ interface Namespace {
zeros: typeof zeros;

/**
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
* Creates a zero-filled ndarray having the same shape and data type as a provided input ndarray.
*
* @param x - input array
* @returns zero-filled array
* @returns zero-filled ndarray
*
* @example
* var getShape = require( '@stdlib/ndarray/shape' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import { Shape, Order, boolndarray, genericndarray, BooleanDataType, GenericData
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns `false`-filled array
* @returns `false`-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand All @@ -47,7 +47,7 @@ declare function falses( dtype: BooleanDataType, shape: Shape, order: Order ): b
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns `false`-filled array
* @returns `false`-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
import { realcomplexndarray, genericndarray } from '@stdlib/types/ndarray';

/**
* Creates a NaN-filled array having the same shape and data type as a provided input ndarray.
* Creates a NaN-filled ndarray having the same shape and data type as a provided input ndarray.
*
* @param x - input array
* @returns NaN-filled array
* @returns NaN-filled ndarray
*
* @example
* var getShape = require( '@stdlib/ndarray/shape' );
Expand Down
24 changes: 12 additions & 12 deletions lib/node_modules/@stdlib/ndarray/base/nans/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
import { Shape, Order, typedndarray, genericndarray, float64ndarray, float32ndarray, complex128ndarray, complex64ndarray, FloatingPointAndGenericDataType, GenericDataType, Float64DataType, Float32DataType, Complex128DataType, Complex64DataType } from '@stdlib/types/ndarray';

/**
* Creates a NaN-filled array having a specified shape and data type.
* Creates a NaN-filled ndarray having a specified shape and data type.
*
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns NaN-filled array
* @returns NaN-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand All @@ -42,12 +42,12 @@ import { Shape, Order, typedndarray, genericndarray, float64ndarray, float32ndar
declare function nans( dtype: Float64DataType, shape: Shape, order: Order ): float64ndarray;

/**
* Creates a NaN-filled array having a specified shape and data type.
* Creates a NaN-filled ndarray having a specified shape and data type.
*
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns NaN-filled array
* @returns NaN-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand All @@ -61,12 +61,12 @@ declare function nans( dtype: Float64DataType, shape: Shape, order: Order ): flo
declare function nans( dtype: Float32DataType, shape: Shape, order: Order ): float32ndarray;

/**
* Creates a NaN-filled array having a specified shape and data type.
* Creates a NaN-filled ndarray having a specified shape and data type.
*
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns NaN-filled array
* @returns NaN-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand All @@ -80,12 +80,12 @@ declare function nans( dtype: Float32DataType, shape: Shape, order: Order ): flo
declare function nans( dtype: Complex128DataType, shape: Shape, order: Order ): complex128ndarray;

/**
* Creates a NaN-filled array having a specified shape and data type.
* Creates a NaN-filled ndarray having a specified shape and data type.
*
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns NaN-filled array
* @returns NaN-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand All @@ -99,12 +99,12 @@ declare function nans( dtype: Complex128DataType, shape: Shape, order: Order ):
declare function nans( dtype: Complex64DataType, shape: Shape, order: Order ): complex64ndarray;

/**
* Creates a NaN-filled array having a specified shape and data type.
* Creates a NaN-filled ndarray having a specified shape and data type.
*
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns NaN-filled array
* @returns NaN-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand All @@ -118,12 +118,12 @@ declare function nans( dtype: Complex64DataType, shape: Shape, order: Order ): c
declare function nans( dtype: GenericDataType, shape: Shape, order: Order ): genericndarray<number>;

/**
* Creates a NaN-filled array having a specified shape and data type.
* Creates a NaN-filled ndarray having a specified shape and data type.
*
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns NaN-filled array
* @returns NaN-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
import { Shape, Order, genericndarray, GenericDataType } from '@stdlib/types/ndarray';

/**
* Creates a null-filled array having a specified shape and data type.
* Creates a null-filled ndarray having a specified shape and data type.
*
* @param dtype - underlying data type
* @param shape - array shape
* @param order - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
* @returns null-filled array
* @returns null-filled ndarray
*
* @example
* var getDType = require( '@stdlib/ndarray/dtype' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ import { ComplexLike } from '@stdlib/types/complex';
import { typedndarray } from '@stdlib/types/ndarray';

/**
* Creates a ones-filled array having the same shape and data type as a provided input ndarray.
* Creates a ones-filled ndarray having the same shape and data type as a provided input ndarray.
*
* @param x - input array
* @returns ones-filled array
* @returns ones-filled ndarray
*
* @example
* var getShape = require( '@stdlib/ndarray/shape' );
Expand Down
Loading