scala-collection-contrib icon indicating copy to clipboard operation
scala-collection-contrib copied to clipboard

community-contributed additions to the Scala 2.13 collections

Results 21 scala-collection-contrib issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, I've recently started using `mutable.MultiDict`, but I often found myself using this pattern. ```scala iterable.foreach(v => dict.addOne(k,v)) ``` Could we add a function to add many values all at...

It would be nice to have a function similar to SQL `BETWEEN` operator that can filter elements from a `Seq` that are in some range. This is not an uncommon...

`Bag` is a lot less verbose than `MultiSet`, and `MultiDict` is also pretty awkward to try and say aloud.

Hi! I believe it would be nice to have a -- method to remove multiple elements from the collection. Looks like it was missed

Currently the pattern between MultiDicts and MultiSets are different: * `MultDict` is a concrete collection * `MultiSet` is an abstract data type (trait) with a public concrete implementation `MultiSetImpl`. I...

the problem is split packages. if this code wasn't under `scala.collection`, we'd be fine. see #51 for (and linked tickets) for gory details we (the core Scala team) don't plan...

help wanted

`ImmutableBuilder` is currently being used as the default builder implementation for: * `immutable.MultiDict` * `immutable.SortedMultiDict` * `immutable.MultiSet` * `immutable.SortedMultiSet` However, it should be possible, for the sake of performance, to...

We should reuse the property-based tests written in the `scalacheck` sub-project. We will have to adapt the build a bit because it is currently not cross-compatible with dotty and Scala.js.

Currently, this library only supports Scala native 0.4: it would be good if a release was make to 0.5, either as a switch over, or cross-published to both (as I...

## Motivation When querying relational databases you usually get a flat result (unless using an ORM). But on the API layer you usually want to expose that information as structured...