Smoren
Smoren
Hi @markrogoyski, This is a PR about the M-partial intersection which have been previously added to your [IterTools](https://github.com/markrogoyski/itertools-php) repository. ### Definition > An **M**-partial intersection (for **M > 0**) of...
Hi @markrogoyski, I have a suggestion about `SetTheory` namespace. I found that `ImmutableSet` extends `Set` and the mutation methods of the `ImmutableSet` implicitly do nothing. I think this is unexpected...
# itertools-ts · [](https://www.npmjs.com/package/itertools-ts) [](https://coveralls.io/github/Smoren/itertools-ts?branch=master)  Extended itertools port for TypeScript and JavaScript. Provides a huge set of functions for working with iterable collections (including async ones)....
# Schematic data mapper ·  [](https://coveralls.io/github/Smoren/schemator-php?branch=master)  [](https://opensource.org/licenses/MIT) [Schemator](https://github.com/Smoren/schemator-php) is a tool for converting nested data structures (any composition of associative arrays, non-associative arrays...
This thread is for discussion new functionality to implement in IterTools. Please reply with suggestions for new functionality. Here are some of the functions I am considering implementing. Some are...
# [itertools-ts](https://github.com/Smoren/itertools-ts) · [](https://www.npmjs.com/package/itertools-ts) [](https://coveralls.io/github/Smoren/itertools-ts?branch=master)  Extended itertools port for TypeScript and JavaScript. Provides a huge set of functions for working with iterable collections (including async ones)....
Checklist: - [x] I've read and understood [Contributing Guidelines](CONTRIBUTING.md). - [x] I've added the new resource at the end of its section. - [x] This resource is out there for...
Play with the simulation hyperparameters in the [live demo](https://smoren.github.io/molecular-ts/) and copy links to interesting worlds here. 
E.g. * Elastic = Elastic * 1.1 * Distance = Distance + 0.1 * Elastic = minmax(Elastic. 0.5, 1.1) * Distance = Elastic * 0.8
Generate random integer numbers. If optional param `repetitions` not given then iterate infinitely. ``` function *integers(min: number, max: number, repetitions?: number): Iterable ``` [PHP implementation example](https://github.com/markrogoyski/itertools-php/blob/main/src/Random.php#L47) Needs to be implemented:...