conduit icon indicating copy to clipboard operation
conduit copied to clipboard

Implement distinct & distinctUntil Operators

Open njlr opened this issue 7 years ago • 0 comments

// pseudo-code
xs = [ 1, 1, 2, 3, 1, 2, 2, 3 ]
distinct(xs) = [ 1, 2, 3 ]
distinctUntil(xs) = [ 1, 2, 3, 1, 2, 3 ]

Open to suggestions on names.

njlr avatar Oct 31 '18 17:10 njlr