File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments