@stdlib/math-iter-special-sqrt1pm1 0.0.2 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +43 -4
- package/package.json +3 -3
- package/CHANGELOG.md +0 -5
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# iterSqrt1pm1
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> Create an [iterator][mdn-iterator-protocol] which computes [`sqrt(1+x) - 1`][@stdlib/math/base/special/sqrt1pm1] for each iterated value.
|
|
26
26
|
|
|
@@ -137,6 +137,21 @@ while ( true ) {
|
|
|
137
137
|
|
|
138
138
|
<!-- /.references -->
|
|
139
139
|
|
|
140
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
141
|
+
|
|
142
|
+
<section class="related">
|
|
143
|
+
|
|
144
|
+
* * *
|
|
145
|
+
|
|
146
|
+
## See Also
|
|
147
|
+
|
|
148
|
+
- <span class="package-name">[`@stdlib/math/base/special/sqrt1pm1`][@stdlib/math/base/special/sqrt1pm1]</span><span class="delimiter">: </span><span class="description">compute sqrt(1 + x) - 1.</span>
|
|
149
|
+
- <span class="package-name">[`@stdlib/math/iter/special/sqrt`][@stdlib/math/iter/special/sqrt]</span><span class="delimiter">: </span><span class="description">create an iterator which computes the principal square root of each iterated value.</span>
|
|
150
|
+
|
|
151
|
+
</section>
|
|
152
|
+
|
|
153
|
+
<!-- /.related -->
|
|
154
|
+
|
|
140
155
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
141
156
|
|
|
142
157
|
|
|
@@ -150,6 +165,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
|
|
|
150
165
|
|
|
151
166
|
For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib].
|
|
152
167
|
|
|
168
|
+
#### Community
|
|
169
|
+
|
|
170
|
+
[![Chat][chat-image]][chat-url]
|
|
171
|
+
|
|
153
172
|
---
|
|
154
173
|
|
|
155
174
|
## License
|
|
@@ -159,7 +178,7 @@ See [LICENSE][stdlib-license].
|
|
|
159
178
|
|
|
160
179
|
## Copyright
|
|
161
180
|
|
|
162
|
-
Copyright © 2016-
|
|
181
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
163
182
|
|
|
164
183
|
</section>
|
|
165
184
|
|
|
@@ -178,9 +197,23 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
178
197
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-iter-special-sqrt1pm1/main.svg
|
|
179
198
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-iter-special-sqrt1pm1?branch=main
|
|
180
199
|
|
|
181
|
-
|
|
200
|
+
<!--
|
|
201
|
+
|
|
202
|
+
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-iter-special-sqrt1pm1.svg
|
|
182
203
|
[dependencies-url]: https://david-dm.org/stdlib-js/math-iter-special-sqrt1pm1/main
|
|
183
204
|
|
|
205
|
+
-->
|
|
206
|
+
|
|
207
|
+
[umd]: https://github.com/umdjs/umd
|
|
208
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
209
|
+
|
|
210
|
+
[deno-url]: https://github.com/stdlib-js/math-iter-special-sqrt1pm1/tree/deno
|
|
211
|
+
[umd-url]: https://github.com/stdlib-js/math-iter-special-sqrt1pm1/tree/umd
|
|
212
|
+
[esm-url]: https://github.com/stdlib-js/math-iter-special-sqrt1pm1/tree/esm
|
|
213
|
+
|
|
214
|
+
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
215
|
+
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
216
|
+
|
|
184
217
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
185
218
|
|
|
186
219
|
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
@@ -189,7 +222,13 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
189
222
|
|
|
190
223
|
[mdn-iterator-protocol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol
|
|
191
224
|
|
|
192
|
-
|
|
225
|
+
<!-- <related-links> -->
|
|
226
|
+
|
|
227
|
+
[@stdlib/math/base/special/sqrt1pm1]: https://www.npmjs.com/package/@stdlib/math-base-special-sqrt1pm1
|
|
228
|
+
|
|
229
|
+
[@stdlib/math/iter/special/sqrt]: https://www.npmjs.com/package/@stdlib/math-iter-special-sqrt
|
|
230
|
+
|
|
231
|
+
<!-- </related-links> -->
|
|
193
232
|
|
|
194
233
|
</section>
|
|
195
234
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/math-iter-special-sqrt1pm1",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Create an iterator which computes `sqrt(1+x) - 1` for each iterated value.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"examples": "make examples",
|
|
29
29
|
"benchmark": "make benchmark"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://
|
|
31
|
+
"homepage": "https://stdlib.io",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "git://github.com/stdlib-js/math-iter-special-sqrt1pm1.git"
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
"@stdlib/types": "^0.0.x"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
+
"@stdlib/array-to-iterator": "^0.0.x",
|
|
45
46
|
"@stdlib/assert-is-iterator-like": "^0.0.x",
|
|
46
47
|
"@stdlib/bench": "^0.0.x",
|
|
47
48
|
"@stdlib/math-base-assert-is-nan": "^0.0.x",
|
|
48
|
-
"@stdlib/random-base-uniform": "^0.0.x",
|
|
49
49
|
"@stdlib/random-iter-uniform": "^0.0.x",
|
|
50
50
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
51
51
|
"istanbul": "^0.4.1",
|