+
+ About stdlib...
+
+ We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
+ The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
+ When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
+ To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
+
+
# Abbreviated Help
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]
@@ -245,8 +256,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/repl-info.svg
[npm-url]: https://npmjs.org/package/@stdlib/repl-info
-[test-image]: https://github.com/stdlib-js/repl-info/actions/workflows/test.yml/badge.svg?branch=main
-[test-url]: https://github.com/stdlib-js/repl-info/actions/workflows/test.yml?query=branch:main
+[test-image]: https://github.com/stdlib-js/repl-info/actions/workflows/test.yml/badge.svg?branch=v0.1.0
+[test-url]: https://github.com/stdlib-js/repl-info/actions/workflows/test.yml?query=branch:v0.1.0
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/repl-info/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/repl-info?branch=main
diff --git a/data/data.csv b/data/data.csv
index bf5bd78..0891958 100644
--- a/data/data.csv
+++ b/data/data.csv
@@ -145,9 +145,10 @@ base.coth,"\nbase.coth( x:number )\n Computes the hyperbolic cotangent of a n
base.covercos,"\nbase.covercos( x:number )\n Computes the coversed cosine.\n"
base.coversin,"\nbase.coversin( x:number )\n Computes the coversed sine.\n"
base.cphase,"\nbase.cphase( z:Complex128 )\n Computes the argument of a double-precision complex floating-point number\n in radians.\n"
-base.cpolar,"\nbase.cpolar( [out:Array|TypedArray|Object,] re:number, im:number )\n Returns the absolute value and phase of a complex number.\n"
+base.cpolar,"\nbase.cpolar( z:Complex128 )\n Returns the absolute value and phase of a double-precision complex\n floating-point number.\n"
+base.cpolar.assign,"\nbase.cpolar.assign( z:Complex128, out:Array|TypedArray|Object, stride:integer, \n offset:integer )\n Returns the absolute value and phase of a double-precision complex\n floating-point number and assigns results to a provided output array.\n"
base.cround,"\nbase.cround( z:Complex128 )\n Rounds each component of a double-precision complex floating-point number\n to the nearest integer.\n"
-base.croundn,"\nbase.croundn( [out:Array|TypedArray|Object,] re:number, im:number, n:integer )\n Rounds a complex number to the nearest multiple of `10^n`.\n"
+base.croundn,"\nbase.croundn( z:Complex128, n:integer )\n Rounds each component of a double-precision complex floating-point number\n to the nearest multiple of `10^n`.\n"
base.csch,"\nbase.csch( x:number )\n Computes the hyperbolic cosecant of a number.\n"
base.csignum,"\nbase.csignum( z:Complex128 )\n Evaluates the signum function of a double-precision complex floating-point\n number.\n"
base.csub,"\nbase.csub( z1:Complex128, z2:Complex128 )\n Subtracts two double-precision complex floating-point numbers.\n"
@@ -934,6 +935,7 @@ base.log,"\nbase.log( x:number, b:number )\n Computes the base `b` logarithm
base.log1mexp,"\nbase.log1mexp( x:number )\n Evaluates the natural logarithm of `1-exp(-|x|)`.\n"
base.log1p,"\nbase.log1p( x:number )\n Evaluates the natural logarithm of `1+x`.\n"
base.log1pexp,"\nbase.log1pexp( x:number )\n Evaluates the natural logarithm of `1+exp(x)`.\n"
+base.log1pmx,"\nbase.log1pmx( x:number )\n Evaluates `ln(1+x) - x`.\n"
base.log2,"\nbase.log2( x:number )\n Evaluates the binary logarithm (base two).\n"
base.log10,"\nbase.log10( x:number )\n Evaluates the common logarithm (base 10).\n"
base.logaddexp,"\nbase.logaddexp( x:number, y:number )\n Computes the natural logarithm of `exp(x) + exp(y)`.\n"
@@ -2483,6 +2485,24 @@ exists.sync,"\nexists.sync( path:string|Buffer )\n Synchronously tests whethe
expandAcronyms,"\nexpandAcronyms( str:string )\n Expands acronyms in a string.\n"
expandContractions,"\nexpandContractions( str:string )\n Expands all contractions to their formal equivalents.\n"
extname,"\nextname( filename:string )\n Returns a filename extension.\n"
+FancyArray,"\nFancyArray( dtype:string, buffer:ArrayLikeObject|TypedArray|Buffer, \n shape:ArrayLikeObject