multisets
multisets copied to clipboard
Open source implementation of multi-sets (or bags) for Scala collection
It would be good to get a new release out - I'm currently having to workaround bugs that have been fixed since the last release, 0.4 at time of writing....
In Scala worksheets (in eclipse) there is an exception thrown for Bag.configuration.compact[Int] it seems to work fine in other environments. I'm not sure what would be causing this but it...
Bug reported in PR #19
For none of the scala.collection types in the standard library do I need an implicit configuration value to create an instance. From a users perspective (me) this is really strange....
Hi @nicolasstucki! You might remember me from previous issues this week, and because we met at some conference (IIRC, Scala 2013). I'm giving so many comments because I'm experimenting with...
This means that the return type of e.g. `flatten` is just `Iterable[T]`. This should be hopefully easy to fix. I haven't checked the other Bag variants yet, though I conjecture...
While reading your code, I noticed one thing which might explain bad performance I'm seeing in some scenarios. `immutable.Bag.++` creates a completely new bag, which is very expensive. Instead, I...