diff --git a/lib/node_modules/@stdlib/array/convert/README.md b/lib/node_modules/@stdlib/array/convert/README.md index 9a145af7c1a4..1ee2f8adcc9c 100644 --- a/lib/node_modules/@stdlib/array/convert/README.md +++ b/lib/node_modules/@stdlib/array/convert/README.md @@ -20,7 +20,7 @@ limitations under the License. # convert -> Convert an array to an array of a different data type. +> Convert an array to an array of a different [data type][@stdlib/array/dtypes]. @@ -42,7 +42,7 @@ var convert = require( '@stdlib/array/convert' ); #### convert( arr, dtype ) -Converts an array to an array of a different data type. +Converts an array to an array of a different [data type][@stdlib/array/dtypes]. ```javascript var arr = [ 1.0, 2.0, 3.0 ]; @@ -50,21 +50,6 @@ var out = convert( arr, 'float32' ); // returns [ 1.0, 2.0, 3.0 ] ``` -The function supports the following data types: - -- `float32`: single-precision floating-point numbers. -- `float64`: double-precision floating-point numbers. -- `complex64`: single-precision complex floating-point numbers. -- `complex128`: double-precision complex floating-point numbers. -- `generic`: values of any type. -- `int16`: signed 16-bit integers. -- `int32`: signed 32-bit integers. -- `int8`: signed 8-bit integers. -- `uint16`: unsigned 16-bit integers. -- `uint32`: unsigned 32-bit integers. -- `uint8`: unsigned 8-bit integers. -- `uint8c`: unsigned clamped 8-bit integers. - @@ -136,6 +121,8 @@ for ( i = 0; i < DTYPES.length; i++ ) {