Skip to content

Commit 60b06f5

Browse files
authored
Merge pull request #1409 from julienrf/legacy-collections
Move guides of 2.12’s collections to the “Legacy” category
2 parents 2c744bd + 7c9abb1 commit 60b06f5

File tree

1 file changed

+52
-52
lines changed

1 file changed

+52
-52
lines changed

_data/overviews.yml

Lines changed: 52 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- category: Standard Library
33
description: "Guides and overviews covering the Scala standard library."
44
overviews:
5-
- title: Scala 2.13’s Collections
5+
- title: Scala Collections
66
by: Martin Odersky and Julien Richard-Foy
77
icon: sitemap
88
url: "collections-2.13/introduction.html"
@@ -40,68 +40,21 @@
4040
url: "core/collections-migration-213.html"
4141
description: "This page describes the main changes for collection users that migrate to Scala
4242
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
4444
icon: sitemap
4545
url: "core/architecture-of-scala-213-collections.html"
4646
by: Julien Richard-Foy
4747
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
4949
icon: building
5050
url: "core/custom-collections.html"
5151
by: Martin Odersky, Lex Spoon and Julien Richard-Foy
5252
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
5454
icon: building
5555
url: "core/custom-collection-operations.html"
5656
by: Julien Richard-Foy
5757
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."
10558

10659
- category: Language
10760
description: "Guides and overviews covering features in the Scala language."
@@ -303,7 +256,7 @@
303256

304257

305258
- 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+)."
307260
overviews:
308261
- title: The Scala Actors Migration Guide
309262
by: Vojin Jovanovic and Philipp Haller
@@ -317,3 +270,50 @@
317270
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."
318271
label-color: "#899295"
319272
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

Comments
 (0)