You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34-7Lines changed: 34 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,20 +34,47 @@ With this compatibility library you can also use the 2.13 syntax which uses a co
34
34
The 2.13 version consists only of an empty `scala.collection.compat` package object that allows you to write `import scala.collection.compat._` in 2.13.
35
35
The 2.11/2.12 version has the compatibility extensions in this package.
36
36
37
-
38
37
The library also adds backported versions of new collection types, currently `scala.collection.compat.immutable.ArraySeq`. In 2.11/2.12, this type is a new collection implementation. In 2.13, it is an alias for `scala.collection.immutable.ArraySeq`.
39
38
40
39
## Migration Tool
41
40
42
-
A tool is being developed to automatically migrate code that uses the standard
43
-
collection to use the strawman.
41
+
We created two migration rules:
42
+
43
+
*`Collection213Upgrade` For applications (like web server, etc)
44
+
*`Collection213CrossCompat` For library that wants to cross compile to (2.11, 2.12 and 2.13)
0 commit comments