Hello all,
I've been digging around the source of Elixir and notice no sets. I've found sets to be very useful in Clojure and have been missing them in Elixir.
So a couple of questions:
* Would sets be a useful addition to Elixir? (I think they would!)
* Is there some data structure I've missed or another approach to something similar to sets in Elixir?
While we have Erlangs sets the syntax makes me sad inside.
:sets.from_list([1,2,3,4])
#{1, 2, 3, 4}
If there is interest I'm happy to submit an issue/patch via the Github Flow.
Thoughts and ideas appreciated,
Thanks,
--
Joseph Wilk