-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add flattenSCC1 :: SCC a -> NonEmpty a
#987
Conversation
This gives a more precise type to the existing `flattenSCC :: SCC a -> [a]`. Closes #985.
80179ab
to
fd3312c
Compare
This probably needs a changelog entry and |
I can add that here once the decision has been taken to merge this PR! |
Let's do it. |
Not sure which release the new function `flattenSCC1` will go in. I speculated 0.7.1.
Ok, I added a I was a bit surprised to see |
Thanks! |
This gives a more precise type to the existing
flattenSCC :: SCC a -> [a]
.Closes #985.