-
Notifications
You must be signed in to change notification settings - Fork 4
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
How about a Set equivalent? #1
Comments
I'm not sure how to publish and 9 of the tests I copied from elm/core are failing but I'm sure there's some details with utilizing assoc-list that I just need to iron out before publishing... What do y'all think? |
Actually you can try it out too if you want! I've never published a library before so this was really cool! |
Yeah, I suppose I could do this if people have a good use for it. I did not do it initially because I saw a more immediate need for a
We could do it this way, but I am curious if we can get better perf by keeping the implementations of
I haven't had a chance to run the tests for your package yet, but if I had to take a guess the tests are failing because my package and elm/core have different invariants regarding the ordering of entries. You should modify the failing tests to account for this difference.
Congrats on publishing your first library! For the sake of cohesiveness, though I would prefer to keep the
I really like elm-explorations/benchmark for measuring perf. |
Yeh happy to PR my fork alternatively! I just did it initially for the experience. elm packages really is wonderful! |
https://github.com/Gizra/elm-all-set is based on this package |
Any plans on adding a corresponding
Set
to this package? 🙂It could essentially just be
type Set a = Set (Dict a ())
The text was updated successfully, but these errors were encountered: