Smoren

Results 23 comments of Smoren

Thank you @alexkart for your comment. I agree that the repository is not widely popular at the moment, but I hope that its usefulness will be a more important factor...

Hi @markrogoyski, Thank you very much for this topic! There are great ideas here and I'll start to implement some of them. For the beginning I'll take `peek()`, if you...

Thanks, @markrogoyski, so the next method I'll implement is `skip()`. UPD: I've added PR https://github.com/markrogoyski/itertools-php/pull/41 with functionality of `skip()`.

Hi @markrogoyski, What do you think about implementation of `subslices()`? ``` foreach (Single::subslices([1, 2, 3] as $slice) { // [1], [2], [3], [1, 2], [2, 3], [1, 2, 3] }...

Hi @markrogoyski, There is [iter](https://github.com/nikic/iter) package. What do you think about implementing some methods which are implemented in [iter](https://github.com/nikic/iter) but missing in IterTools PHP? Here is a comparison: |[IterTools PHP](https://github.com/markrogoyski/itertools-php)|[iter](https://github.com/nikic/iter)|...

Hi @markrogoyski, I've implemented some methods from this topic: * `Reduce::toRandomValue()` (https://github.com/markrogoyski/itertools-php/pull/42); * `Summary::isEmpty()` (https://github.com/markrogoyski/itertools-php/pull/43).

Hi @markrogoyski, I've added and tested `Summary::allUnique()` method (https://github.com/markrogoyski/itertools-php/pull/44).

Hi @markrogoyski, I've added and tested `Set::union()` method (https://github.com/markrogoyski/itertools-php/pull/45).

Hi @markrogoyski, I've added and tested `Reduce::toNth()` method (https://github.com/markrogoyski/itertools-php/pull/47).

Hi @markrogoyski, What do you think about the implementation of [zipFilled()](https://github.com/Smoren/itertools-ts#Zip-Filled) function in IterTools PHP like I have done it in IterTools TS?