multisets icon indicating copy to clipboard operation
multisets copied to clipboard

Open source implementation of multi-sets (or bags) for Scala collection

Results 8 multisets issues
Sort by recently updated
recently updated
newest added

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...

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...