@stdlib/math-iter-sequences-squared-triangular 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 +32 -3
- 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
|
# iterSquaredTriangularSeq
|
|
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 sequence of [squared triangular numbers][oeis-a000537].
|
|
26
26
|
|
|
@@ -190,6 +190,20 @@ while ( true ) {
|
|
|
190
190
|
|
|
191
191
|
<!-- /.references -->
|
|
192
192
|
|
|
193
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
194
|
+
|
|
195
|
+
<section class="related">
|
|
196
|
+
|
|
197
|
+
* * *
|
|
198
|
+
|
|
199
|
+
## See Also
|
|
200
|
+
|
|
201
|
+
- <span class="package-name">[`@stdlib/math/iter/sequences/triangular`][@stdlib/math/iter/sequences/triangular]</span><span class="delimiter">: </span><span class="description">create an iterator which generates a sequence of triangular numbers.</span>
|
|
202
|
+
|
|
203
|
+
</section>
|
|
204
|
+
|
|
205
|
+
<!-- /.related -->
|
|
206
|
+
|
|
193
207
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
194
208
|
|
|
195
209
|
|
|
@@ -216,7 +230,7 @@ See [LICENSE][stdlib-license].
|
|
|
216
230
|
|
|
217
231
|
## Copyright
|
|
218
232
|
|
|
219
|
-
Copyright © 2016-
|
|
233
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
220
234
|
|
|
221
235
|
</section>
|
|
222
236
|
|
|
@@ -235,9 +249,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
235
249
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-iter-sequences-squared-triangular/main.svg
|
|
236
250
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-iter-sequences-squared-triangular?branch=main
|
|
237
251
|
|
|
252
|
+
<!--
|
|
253
|
+
|
|
238
254
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-iter-sequences-squared-triangular.svg
|
|
239
255
|
[dependencies-url]: https://david-dm.org/stdlib-js/math-iter-sequences-squared-triangular/main
|
|
240
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-squared-triangular/tree/deno
|
|
263
|
+
[umd-url]: https://github.com/stdlib-js/math-iter-sequences-squared-triangular/tree/umd
|
|
264
|
+
[esm-url]: https://github.com/stdlib-js/math-iter-sequences-squared-triangular/tree/esm
|
|
265
|
+
|
|
241
266
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
242
267
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
243
268
|
|
|
@@ -251,9 +276,13 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
251
276
|
|
|
252
277
|
[squared-triangular-number]: https://en.wikipedia.org/wiki/Squared_triangular_number
|
|
253
278
|
|
|
279
|
+
[@stdlib/math/base/special/binomcoef]: https://www.npmjs.com/package/@stdlib/math-base-special-binomcoef
|
|
280
|
+
|
|
281
|
+
<!-- <related-links> -->
|
|
282
|
+
|
|
254
283
|
[@stdlib/math/iter/sequences/triangular]: https://www.npmjs.com/package/@stdlib/math-iter-sequences-triangular
|
|
255
284
|
|
|
256
|
-
|
|
285
|
+
<!-- </related-links> -->
|
|
257
286
|
|
|
258
287
|
</section>
|
|
259
288
|
|
package/package.json
CHANGED