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