@stdlib/math-iter-sequences-primes 0.0.3 → 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 +47 -3
- package/package.json +2 -2
- 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
|
# iterPrimesSeq
|
|
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 [prime numbers][oeis-a000040].
|
|
26
26
|
|
|
@@ -162,6 +162,22 @@ while ( true ) {
|
|
|
162
162
|
|
|
163
163
|
<!-- /.references -->
|
|
164
164
|
|
|
165
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
166
|
+
|
|
167
|
+
<section class="related">
|
|
168
|
+
|
|
169
|
+
* * *
|
|
170
|
+
|
|
171
|
+
## See Also
|
|
172
|
+
|
|
173
|
+
- <span class="package-name">[`@stdlib/math/iter/sequences/composites`][@stdlib/math/iter/sequences/composites]</span><span class="delimiter">: </span><span class="description">create an iterator which generates a sequence of composite numbers.</span>
|
|
174
|
+
- <span class="package-name">[`@stdlib/math/iter/sequences/integers`][@stdlib/math/iter/sequences/integers]</span><span class="delimiter">: </span><span class="description">create an iterator which generates an interleaved integer sequence.</span>
|
|
175
|
+
- <span class="package-name">[`@stdlib/math/iter/sequences/positive-integers`][@stdlib/math/iter/sequences/positive-integers]</span><span class="delimiter">: </span><span class="description">create an iterator which generates a positive integer sequence.</span>
|
|
176
|
+
|
|
177
|
+
</section>
|
|
178
|
+
|
|
179
|
+
<!-- /.related -->
|
|
180
|
+
|
|
165
181
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
166
182
|
|
|
167
183
|
|
|
@@ -175,6 +191,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
|
|
|
175
191
|
|
|
176
192
|
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].
|
|
177
193
|
|
|
194
|
+
#### Community
|
|
195
|
+
|
|
196
|
+
[![Chat][chat-image]][chat-url]
|
|
197
|
+
|
|
178
198
|
---
|
|
179
199
|
|
|
180
200
|
## License
|
|
@@ -184,7 +204,7 @@ See [LICENSE][stdlib-license].
|
|
|
184
204
|
|
|
185
205
|
## Copyright
|
|
186
206
|
|
|
187
|
-
Copyright © 2016-
|
|
207
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
188
208
|
|
|
189
209
|
</section>
|
|
190
210
|
|
|
@@ -203,9 +223,23 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
203
223
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-iter-sequences-primes/main.svg
|
|
204
224
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-iter-sequences-primes?branch=main
|
|
205
225
|
|
|
206
|
-
|
|
226
|
+
<!--
|
|
227
|
+
|
|
228
|
+
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-iter-sequences-primes.svg
|
|
207
229
|
[dependencies-url]: https://david-dm.org/stdlib-js/math-iter-sequences-primes/main
|
|
208
230
|
|
|
231
|
+
-->
|
|
232
|
+
|
|
233
|
+
[umd]: https://github.com/umdjs/umd
|
|
234
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
235
|
+
|
|
236
|
+
[deno-url]: https://github.com/stdlib-js/math-iter-sequences-primes/tree/deno
|
|
237
|
+
[umd-url]: https://github.com/stdlib-js/math-iter-sequences-primes/tree/umd
|
|
238
|
+
[esm-url]: https://github.com/stdlib-js/math-iter-sequences-primes/tree/esm
|
|
239
|
+
|
|
240
|
+
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
241
|
+
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
242
|
+
|
|
209
243
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
210
244
|
|
|
211
245
|
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
@@ -214,6 +248,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
214
248
|
|
|
215
249
|
[oeis-a000040]: https://oeis.org/A000040
|
|
216
250
|
|
|
251
|
+
<!-- <related-links> -->
|
|
252
|
+
|
|
253
|
+
[@stdlib/math/iter/sequences/composites]: https://www.npmjs.com/package/@stdlib/math-iter-sequences-composites
|
|
254
|
+
|
|
255
|
+
[@stdlib/math/iter/sequences/integers]: https://www.npmjs.com/package/@stdlib/math-iter-sequences-integers
|
|
256
|
+
|
|
257
|
+
[@stdlib/math/iter/sequences/positive-integers]: https://www.npmjs.com/package/@stdlib/math-iter-sequences-positive-integers
|
|
258
|
+
|
|
259
|
+
<!-- </related-links> -->
|
|
260
|
+
|
|
217
261
|
</section>
|
|
218
262
|
|
|
219
263
|
<!-- /.links -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/math-iter-sequences-primes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Create an iterator which generates a sequence of prime numbers.",
|
|
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-sequences-primes.git"
|