Open alexbiehl opened 3 years ago
It would be great if there was a way to modify a Fake action to only return unique values. I imagine something along the lines of unique :: (Hashable a, Eq a) => FakeT m a -> FakeT m a.
unique :: (Hashable a, Eq a) => FakeT m a -> FakeT m a
I suppose something like that is possible. I'm not opposed to a PR implementing it. :-)
It would be great if there was a way to modify a Fake action to only return unique values. I imagine something along the lines of
unique :: (Hashable a, Eq a) => FakeT m a -> FakeT m a
.