@stdlib/math-iter-sequences-lucas 0.0.6 → 0.0.7
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 +39 -2
- package/package.json +1 -1
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
|
# iterLucasSeq
|
|
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 which generates a [Lucas sequence][lucas-number].
|
|
26
26
|
|
|
@@ -175,6 +175,22 @@ while ( true ) {
|
|
|
175
175
|
|
|
176
176
|
<!-- /.references -->
|
|
177
177
|
|
|
178
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
179
|
+
|
|
180
|
+
<section class="related">
|
|
181
|
+
|
|
182
|
+
* * *
|
|
183
|
+
|
|
184
|
+
## See Also
|
|
185
|
+
|
|
186
|
+
- <span class="package-name">[`@stdlib/math/base/special/lucas`][@stdlib/math/base/special/lucas]</span><span class="delimiter">: </span><span class="description">compute the nth Lucas number.</span>
|
|
187
|
+
- <span class="package-name">[`@stdlib/math/iter/sequences/fibonacci`][@stdlib/math/iter/sequences/fibonacci]</span><span class="delimiter">: </span><span class="description">create an iterator which generates a Fibonacci sequence.</span>
|
|
188
|
+
- <span class="package-name">[`@stdlib/math/iter/sequences/negalucas`][@stdlib/math/iter/sequences/negalucas]</span><span class="delimiter">: </span><span class="description">create an iterator which generates a negaLucas sequence.</span>
|
|
189
|
+
|
|
190
|
+
</section>
|
|
191
|
+
|
|
192
|
+
<!-- /.related -->
|
|
193
|
+
|
|
178
194
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
179
195
|
|
|
180
196
|
|
|
@@ -201,7 +217,7 @@ See [LICENSE][stdlib-license].
|
|
|
201
217
|
|
|
202
218
|
## Copyright
|
|
203
219
|
|
|
204
|
-
Copyright © 2016-
|
|
220
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
205
221
|
|
|
206
222
|
</section>
|
|
207
223
|
|
|
@@ -220,9 +236,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
220
236
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-iter-sequences-lucas/main.svg
|
|
221
237
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-iter-sequences-lucas?branch=main
|
|
222
238
|
|
|
239
|
+
<!--
|
|
240
|
+
|
|
223
241
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-iter-sequences-lucas.svg
|
|
224
242
|
[dependencies-url]: https://david-dm.org/stdlib-js/math-iter-sequences-lucas/main
|
|
225
243
|
|
|
244
|
+
-->
|
|
245
|
+
|
|
246
|
+
[umd]: https://github.com/umdjs/umd
|
|
247
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
248
|
+
|
|
249
|
+
[deno-url]: https://github.com/stdlib-js/math-iter-sequences-lucas/tree/deno
|
|
250
|
+
[umd-url]: https://github.com/stdlib-js/math-iter-sequences-lucas/tree/umd
|
|
251
|
+
[esm-url]: https://github.com/stdlib-js/math-iter-sequences-lucas/tree/esm
|
|
252
|
+
|
|
226
253
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
227
254
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
228
255
|
|
|
@@ -236,6 +263,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
236
263
|
|
|
237
264
|
[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985
|
|
238
265
|
|
|
266
|
+
<!-- <related-links> -->
|
|
267
|
+
|
|
268
|
+
[@stdlib/math/base/special/lucas]: https://www.npmjs.com/package/@stdlib/math-base-special-lucas
|
|
269
|
+
|
|
270
|
+
[@stdlib/math/iter/sequences/fibonacci]: https://www.npmjs.com/package/@stdlib/math-iter-sequences-fibonacci
|
|
271
|
+
|
|
272
|
+
[@stdlib/math/iter/sequences/negalucas]: https://www.npmjs.com/package/@stdlib/math-iter-sequences-negalucas
|
|
273
|
+
|
|
274
|
+
<!-- </related-links> -->
|
|
275
|
+
|
|
239
276
|
</section>
|
|
240
277
|
|
|
241
278
|
<!-- /.links -->
|