Skip to content

v2.2

Latest
Compare
Choose a tag to compare
@JulienPalard JulienPalard released this 04 Apr 06:38
· 1 commit to main since this release
b129766

NEW: One-off pipes, contributed by @YoraiLevi:

>>> from itertools import combinations

>>> list(range(5) | Pipe(combinations, 2))
[(0, 1), (0, 2), (0, 3), (0, 4), (1, 2), (1, 3), (1, 4), (2, 3), (2, 4), (3, 4)]
>>>