diff --git a/lib/node_modules/@stdlib/array/empty-like/README.md b/lib/node_modules/@stdlib/array/empty-like/README.md index eac7ec05dc9e..fc6db5ab36f1 100644 --- a/lib/node_modules/@stdlib/array/empty-like/README.md +++ b/lib/node_modules/@stdlib/array/empty-like/README.md @@ -2,7 +2,7 @@ @license Apache-2.0 -Copyright (c) 2023 The Stdlib Authors. +Copyright (c) 2024 The Stdlib Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -42,7 +42,7 @@ var emptyLike = require( '@stdlib/array/empty-like' ); #### emptyLike( x\[, dtype] ) -Creates an uninitialized array having the same length and data type as a provided array `x`. +Creates an uninitialized array having the same length and [data type][@stdlib/array/dtypes] as a provided array `x`. ```javascript var x = [ 1, 2, 3, 4, 5 ]; @@ -51,22 +51,7 @@ var arr = emptyLike( x ); // returns [ 0, 0, 0, 0, 0 ]; ``` -The function recognizes the following data types: - -- `float64`: double-precision floating-point numbers (IEEE 754) -- `float32`: single-precision floating-point numbers (IEEE 754) -- `complex128`: double-precision complex floating-point numbers -- `complex64`: single-precision complex floating-point numbers -- `int32`: 32-bit two's complement signed integers -- `uint32`: 32-bit unsigned integers -- `int16`: 16-bit two's complement signed integers -- `uint16`: 16-bit unsigned integers -- `int8`: 8-bit two's complement signed integers -- `uint8`: 8-bit unsigned integers -- `uint8c`: 8-bit unsigned integers clamped to `0-255` -- `generic`: generic JavaScript values - -By default, the output array data type is inferred from the provided array `x`. To return an array having a different data type, provide a `dtype` argument. +By default, the output array [data type][@stdlib/array/dtypes] is inferred from the provided array `x`. To return an array having a different [data type][@stdlib/array/dtypes], provide a `dtype` argument. ```javascript var x = [ 1, 1 ]; @@ -155,6 +140,8 @@ for ( i = 0; i < dt.length; i++ ) {