Skip to content

Commit a22c2b6

Browse files
author
exoego
committed
There is no newer version for those 2 pages.
1 parent 0621351 commit a22c2b6

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

_overviews/collections/migrating-from-scala-27.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@ languages: [ja, zh-cn]
1313
permalink: /overviews/collections/:title.html
1414
---
1515

16-
<a class="link-to-newer-version" href="{{ page.url | replace_first: '/collections/', '/collections-2.13/'}}" >
17-
See this in Scala 2.13
18-
<i class="fa fa-arrow-circle-right" aria-hidden="true"></i>
19-
</a>
20-
2116
Porting your existing Scala applications to use the new collections should be almost automatic. There are only a couple of possible issues to take care of.
2217

2318
Generally, the old functionality of Scala 2.7 collections has been left in place. Some features have been deprecated, which means they will removed in some future release. You will get a _deprecation warning_ when you compile code that makes use of these features in Scala 2.8. In a few places deprecation was unfeasible, because the operation in question was retained in 2.8, but changed in meaning or performance characteristics. These cases will be flagged with _migration warnings_ when compiled under 2.8. To get full deprecation and migration warnings with suggestions how to change your code, pass the `-deprecation` and `-Xmigration` flags to `scalac` (note that `-Xmigration` is an extended option, so it starts with an `X`). You can also pass the same options to the `scala` REPL to get the warnings in an interactive session. Example:

_overviews/collections/trait-traversable.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@ languages: [ja, zh-cn]
1313
permalink: /overviews/collections/:title.html
1414
---
1515

16-
<a class="link-to-newer-version" href="{{ page.url | replace_first: '/collections/', '/collections-2.13/'}}" >
17-
See this in Scala 2.13
18-
<i class="fa fa-arrow-circle-right" aria-hidden="true"></i>
19-
</a>
20-
2116
At the top of the collection hierarchy is trait `Traversable`. Its only abstract operation is `foreach`:
2217

2318
def foreach[U](f: Elem => U)

0 commit comments

Comments
 (0)