@stdlib/math-iter-sequences-negafibonacci 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
|
# iterNegaFibonacciSeq
|
|
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 [negaFibonacci sequence][fibonacci-number].
|
|
26
26
|
|
|
@@ -188,6 +188,22 @@ while ( true ) {
|
|
|
188
188
|
|
|
189
189
|
<!-- /.references -->
|
|
190
190
|
|
|
191
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
192
|
+
|
|
193
|
+
<section class="related">
|
|
194
|
+
|
|
195
|
+
* * *
|
|
196
|
+
|
|
197
|
+
## See Also
|
|
198
|
+
|
|
199
|
+
- <span class="package-name">[`@stdlib/math/base/special/negafibonacci`][@stdlib/math/base/special/negafibonacci]</span><span class="delimiter">: </span><span class="description">compute the nth negaFibonacci number.</span>
|
|
200
|
+
- <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>
|
|
201
|
+
- <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>
|
|
202
|
+
|
|
203
|
+
</section>
|
|
204
|
+
|
|
205
|
+
<!-- /.related -->
|
|
206
|
+
|
|
191
207
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
192
208
|
|
|
193
209
|
|
|
@@ -214,7 +230,7 @@ See [LICENSE][stdlib-license].
|
|
|
214
230
|
|
|
215
231
|
## Copyright
|
|
216
232
|
|
|
217
|
-
Copyright © 2016-
|
|
233
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
218
234
|
|
|
219
235
|
</section>
|
|
220
236
|
|
|
@@ -233,9 +249,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
233
249
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-iter-sequences-negafibonacci/main.svg
|
|
234
250
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-iter-sequences-negafibonacci?branch=main
|
|
235
251
|
|
|
252
|
+
<!--
|
|
253
|
+
|
|
236
254
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-iter-sequences-negafibonacci.svg
|
|
237
255
|
[dependencies-url]: https://david-dm.org/stdlib-js/math-iter-sequences-negafibonacci/main
|
|
238
256
|
|
|
257
|
+
-->
|
|
258
|
+
|
|
259
|
+
[umd]: https://github.com/umdjs/umd
|
|
260
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
261
|
+
|
|
262
|
+
[deno-url]: https://github.com/stdlib-js/math-iter-sequences-negafibonacci/tree/deno
|
|
263
|
+
[umd-url]: https://github.com/stdlib-js/math-iter-sequences-negafibonacci/tree/umd
|
|
264
|
+
[esm-url]: https://github.com/stdlib-js/math-iter-sequences-negafibonacci/tree/esm
|
|
265
|
+
|
|
239
266
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
240
267
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
241
268
|
|
|
@@ -249,6 +276,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
249
276
|
|
|
250
277
|
[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985
|
|
251
278
|
|
|
279
|
+
<!-- <related-links> -->
|
|
280
|
+
|
|
281
|
+
[@stdlib/math/base/special/negafibonacci]: https://www.npmjs.com/package/@stdlib/math-base-special-negafibonacci
|
|
282
|
+
|
|
283
|
+
[@stdlib/math/iter/sequences/fibonacci]: https://www.npmjs.com/package/@stdlib/math-iter-sequences-fibonacci
|
|
284
|
+
|
|
285
|
+
[@stdlib/math/iter/sequences/nonfibonacci]: https://www.npmjs.com/package/@stdlib/math-iter-sequences-nonfibonacci
|
|
286
|
+
|
|
287
|
+
<!-- </related-links> -->
|
|
288
|
+
|
|
252
289
|
</section>
|
|
253
290
|
|
|
254
291
|
<!-- /.links -->
|