Skip to content

Releases: JulienPalard/Pipe

v2.2

04 Apr 06:38
b129766
Compare
Choose a tag to compare

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)]
>>>

v2.0

23 May 07:31
9c4402c
Compare
Choose a tag to compare