IteratorTools icon indicating copy to clipboard operation
IteratorTools copied to clipboard

A Swift port of Python's itertools.

Results 4 IteratorTools issues
Sort by recently updated
recently updated
newest added

Hi Michael (or is it Mike!) I was working on some swift that does combinations & permutations. I then discovered itertools in python and then found this repo. Great that...

The Path in the Project file for AnyIterator.swift was incorrect so I've fixed it. My guess is the project file wasn't committed when the file was moved :-)

Hi! I found that the permutation function no working well. I tried this way: `let comb = [1,2,3,4,5,6,7].permutations(repeatingElements: false) print(comb)` Gives me error. I think something wrong with the `public...