We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa0c779 commit 8e2bd53Copy full SHA for 8e2bd53
README.md
@@ -0,0 +1,28 @@
1
+# Scala Collection Contrib
2
+
3
+This module provides extra features to the Scala standard collections.
4
5
+## New Collection Types
6
7
+- `MultiSet` (both mutable and immutable)
8
+- `SortedMultiSet` (both mutable and immutable)
9
+- `MultiDict` (both mutable and immutable)
10
+- `SortedMultiDict` (both mutable and immutable)
11
12
+## New Operations
13
14
+The new operations are provided via an implicit enrichment. You need to add the following
15
+import to make them available:
16
17
+~~~ scala
18
+import scala.collection.decorators._
19
+~~~
20
21
+The following operations are provided:
22
23
+- `Seq`
24
+ - `intersperse`
25
+- `Map`
26
+ - `zipByKey` / `join` / `zipByKeyWith`
27
+ - `mergeByKey` / `fullOuterJoin` / `mergeByKeyWith` / `leftOuterJoin` / `rightOuterJoin`
28
0 commit comments