|
2 | 2 | - category: Standard Library
|
3 | 3 | description: "Guides and overviews covering the Scala standard library."
|
4 | 4 | overviews:
|
5 |
| - - title: Scala 2.13’s Collections |
| 5 | + - title: Scala Collections |
6 | 6 | by: Martin Odersky and Julien Richard-Foy
|
7 | 7 | icon: sitemap
|
8 | 8 | url: "collections-2.13/introduction.html"
|
|
40 | 40 | url: "core/collections-migration-213.html"
|
41 | 41 | description: "This page describes the main changes for collection users that migrate to Scala
|
42 | 42 | 2.13 and shows how to cross-build projects with Scala 2.11 / 2.12 and 2.13."
|
43 |
| - - title: The Architecture of Scala 2.13’s Collections |
| 43 | + - title: The Architecture of Scala Collections |
44 | 44 | icon: sitemap
|
45 | 45 | url: "core/architecture-of-scala-213-collections.html"
|
46 | 46 | by: Julien Richard-Foy
|
47 | 47 | description: "These pages describe the architecture of the collections framework introduced in Scala 2.13. Compared to the Collections API you will find out more about the internal workings of the framework."
|
48 |
| - - title: Implementing Custom Collections (Scala 2.13) |
| 48 | + - title: Implementing Custom Collections |
49 | 49 | icon: building
|
50 | 50 | url: "core/custom-collections.html"
|
51 | 51 | by: Martin Odersky, Lex Spoon and Julien Richard-Foy
|
52 | 52 | description: "In this document you will learn how the collections framework helps you define your own collections in a few lines of code, while reusing the overwhelming part of collection functionality from the framework."
|
53 |
| - - title: Adding Custom Collection Operations (Scala 2.13) |
| 53 | + - title: Adding Custom Collection Operations |
54 | 54 | icon: building
|
55 | 55 | url: "core/custom-collection-operations.html"
|
56 | 56 | by: Julien Richard-Foy
|
57 | 57 | description: "This guide shows how to write operations that can be applied to any collection type and return the same collection type, and how to write operations that can be parameterized by the type of collection to build."
|
58 |
| - - title: Scala 2.8 to 2.12’s Collections |
59 |
| - by: Martin Odersky |
60 |
| - icon: sitemap |
61 |
| - url: "collections/introduction.html" |
62 |
| - description: "Scala's Collection Library." |
63 |
| - subdocs: |
64 |
| - - title: Introduction |
65 |
| - url: "collections/introduction.html" |
66 |
| - - title: Mutable and Immutable Collections |
67 |
| - url: "collections/overview.html" |
68 |
| - - title: Trait Traversable |
69 |
| - url: "collections/trait-traversable.html" |
70 |
| - - title: Trait Iterable |
71 |
| - url: "collections/trait-iterable.html" |
72 |
| - - title: The sequence traits Seq, IndexedSeq, and LinearSeq |
73 |
| - url: "collections/seqs.html" |
74 |
| - - title: Sets |
75 |
| - url: "collections/sets.html" |
76 |
| - - title: Maps |
77 |
| - url: "collections/maps.html" |
78 |
| - - title: Concrete Immutable Collection Classes |
79 |
| - url: "collections/concrete-immutable-collection-classes.html" |
80 |
| - - title: Concrete Mutable Collection Classes |
81 |
| - url: "collections/concrete-mutable-collection-classes.html" |
82 |
| - - title: Arrays |
83 |
| - url: "collections/arrays.html" |
84 |
| - - title: Strings |
85 |
| - url: "collections/strings.html" |
86 |
| - - title: Performance Characteristics |
87 |
| - url: "collections/performance-characteristics.html" |
88 |
| - - title: Equality |
89 |
| - url: "collections/equality.html" |
90 |
| - - title: Views |
91 |
| - url: "collections/views.html" |
92 |
| - - title: Iterators |
93 |
| - url: "collections/iterators.html" |
94 |
| - - title: Creating Collections From Scratch |
95 |
| - url: "collections/creating-collections-from-scratch.html" |
96 |
| - - title: Conversions Between Java and Scala Collections |
97 |
| - url: "collections/conversions-between-java-and-scala-collections.html" |
98 |
| - - title: Migrating from Scala 2.7 |
99 |
| - url: "collections/migrating-from-scala-27.html" |
100 |
| - - title: The Architecture of Scala 2.8 to 2.12’s Collections |
101 |
| - icon: building |
102 |
| - url: "core/architecture-of-scala-collections.html" |
103 |
| - by: Martin Odersky and Lex Spoon |
104 |
| - description: "These pages describe the architecture of the Scala collections framework in detail. Compared to the Collections API you will find out more about the internal workings of the framework. You will also learn how this architecture helps you define your own collections in a few lines of code, while reusing the overwhelming part of collection functionality from the framework." |
105 | 58 |
|
106 | 59 | - category: Language
|
107 | 60 | description: "Guides and overviews covering features in the Scala language."
|
|
303 | 256 |
|
304 | 257 |
|
305 | 258 | - category: Legacy
|
306 |
| - description: "Guides covering features no longer relevant to recent Scala versions (2.11+)." |
| 259 | + description: "Guides covering features no longer relevant to recent Scala versions (2.12+)." |
307 | 260 | overviews:
|
308 | 261 | - title: The Scala Actors Migration Guide
|
309 | 262 | by: Vojin Jovanovic and Philipp Haller
|
|
317 | 270 | description: "This guide describes the API of the scala.actors package of Scala 2.8/2.9. The organization follows groups of types that logically belong together. The trait hierarchy is taken into account to structure the individual sections. The focus is on the run-time behavior of the various methods that these traits define, thereby complementing the existing Scaladoc-based API documentation."
|
318 | 271 | label-color: "#899295"
|
319 | 272 | label-text: deprecated
|
| 273 | + - title: Scala 2.8 to 2.12’s Collections |
| 274 | + by: Martin Odersky |
| 275 | + icon: sitemap |
| 276 | + url: "collections/introduction.html" |
| 277 | + description: "Scala's Collection Library." |
| 278 | + subdocs: |
| 279 | + - title: Introduction |
| 280 | + url: "collections/introduction.html" |
| 281 | + - title: Mutable and Immutable Collections |
| 282 | + url: "collections/overview.html" |
| 283 | + - title: Trait Traversable |
| 284 | + url: "collections/trait-traversable.html" |
| 285 | + - title: Trait Iterable |
| 286 | + url: "collections/trait-iterable.html" |
| 287 | + - title: The sequence traits Seq, IndexedSeq, and LinearSeq |
| 288 | + url: "collections/seqs.html" |
| 289 | + - title: Sets |
| 290 | + url: "collections/sets.html" |
| 291 | + - title: Maps |
| 292 | + url: "collections/maps.html" |
| 293 | + - title: Concrete Immutable Collection Classes |
| 294 | + url: "collections/concrete-immutable-collection-classes.html" |
| 295 | + - title: Concrete Mutable Collection Classes |
| 296 | + url: "collections/concrete-mutable-collection-classes.html" |
| 297 | + - title: Arrays |
| 298 | + url: "collections/arrays.html" |
| 299 | + - title: Strings |
| 300 | + url: "collections/strings.html" |
| 301 | + - title: Performance Characteristics |
| 302 | + url: "collections/performance-characteristics.html" |
| 303 | + - title: Equality |
| 304 | + url: "collections/equality.html" |
| 305 | + - title: Views |
| 306 | + url: "collections/views.html" |
| 307 | + - title: Iterators |
| 308 | + url: "collections/iterators.html" |
| 309 | + - title: Creating Collections From Scratch |
| 310 | + url: "collections/creating-collections-from-scratch.html" |
| 311 | + - title: Conversions Between Java and Scala Collections |
| 312 | + url: "collections/conversions-between-java-and-scala-collections.html" |
| 313 | + - title: Migrating from Scala 2.7 |
| 314 | + url: "collections/migrating-from-scala-27.html" |
| 315 | + - title: The Architecture of Scala 2.8 to 2.12’s Collections |
| 316 | + icon: building |
| 317 | + url: "core/architecture-of-scala-collections.html" |
| 318 | + by: Martin Odersky and Lex Spoon |
| 319 | + description: "These pages describe the architecture of the Scala collections framework in detail. Compared to the Collections API you will find out more about the internal workings of the framework. You will also learn how this architecture helps you define your own collections in a few lines of code, while reusing the overwhelming part of collection functionality from the framework." |
0 commit comments