diff --git a/lib/node_modules/@stdlib/array/full-like/README.md b/lib/node_modules/@stdlib/array/full-like/README.md index 342c74662814..dab4e779d603 100644 --- a/lib/node_modules/@stdlib/array/full-like/README.md +++ b/lib/node_modules/@stdlib/array/full-like/README.md @@ -2,7 +2,7 @@ @license Apache-2.0 -Copyright (c) 2022 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 fullLike = require( '@stdlib/array/full-like' ); #### fullLike( x, value\[, dtype] ) -Creates a filled array having the same length and data type as a provided array `x`. +Creates a filled 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 = fullLike( x, 1 ); // returns [ 1, 1, 1, 1, 1 ] ``` -The function supports 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 ]; @@ -85,7 +70,7 @@ var arr = fullLike( x, 1, 'int32' ); ## Notes -- If provided a number and the output array data type is a complex number data type, the function returns a complex number array where each element has a real component whose value equals the provided fill value and where each element has an imaginary component equal to `0`. +- If provided a number and the output array [data type][@stdlib/array/dtypes] is a complex number [data type][@stdlib/array/dtypes], the function returns a complex number array where each element has a real component whose value equals the provided fill value and where each element has an imaginary component equal to `0`. @@ -151,6 +136,8 @@ for ( i = 0; i < dt.length; i++ ) {