@@ -3,42 +3,51 @@ layout: guides-index
3
3
language : zh-cn
4
4
title : 目录
5
5
---
6
- ##[ Thanks] ( Thanks.md )
7
- ##[ The Scala Actors Migration Guide NEW IN 2.10] ( core/The-Scala-Actors-Migration-Guide.md )
8
- ##[ Value Classes and Universal Traits NEW IN 2.10] ( core/Value-Classes-and-Universal-Traits.md )
9
- ##[ String Interpolation NEW IN 2.10] ( core/String_Interpolation.md )
10
- ##[ Implicit Classes AVAILABLE] ( core/Implicit-Classes.md )
11
- ##[ Futures and Promises NEW IN 2.10] ( core/Futures-and-Promises.md )
12
- ## Scala’s Parallel Collections Library
13
- - [ Overview] ( parallel-collections/Overview.md )
14
- - [ Concrete Parallel Collection Classes] ( parallel-collections/Concrete_Parallel_Collection_Classes.md )
15
- - [ Parallel Collection Conversions] ( parallel-collections/Parallel_Collection_Conversions.md )
16
- - [ Concurrent Tries] ( parallel-collections/Concurrent_Tries.md )
17
- - [ Architecture of the Parallel Collections Library] ( parallel-collections/Architecture_of_the_Parallel_Collections_Library.md )
18
- - [ Creating Custom Parallel Collections] ( parallel-collections/Creating_Custom_Parallel_Collections.md )
19
- - [ Configuring Parallel Collections] ( parallel-collections/Configuring_Parallel_Collections.md )
20
- - [ Measuring Performance] ( parallel-collections/Measuring_Performance.md )
21
6
22
- ##[ The Architecture of Scala Collections] ( core/The_Architecture_of_Scala_Collections.md )
23
- ##[ The Scala Actors API] ( core/The_Scala_Actors_API.md )
7
+ <div class =" page-header-index " >
8
+ <h2 >核心库</h2 >
9
+ </div >
10
+ * Scala的容器类
11
+ * [ 简介] ( /zh-cn/overviews/collections/introduction.html )
12
+ * [ Mutable和Immutable集合] ( /zh-cn/overviews/collections/overview.html )
13
+ * [ Trait Traversable] ( /zh-cn/overviews/collections/trait-traversable.html )
14
+ * [ Trait Iterable] ( /zh-cn/overviews/collections/trait-iterable.html )
15
+ * [ 序列trait:Seq、IndexedSeq 及 LinearSeq] ( /zh-cn/overviews/collections/seqs.html )
16
+ * [ 集合] ( /zh-cn/overviews/collections/sets.html )
17
+ * [ 映射] ( /zh-cn/overviews/collections/maps.html )
18
+ * [ 具体的不可变集实体类] ( /zh-cn/overviews/collections/concrete-immutable-collection-classes.html )
19
+ * [ 具体的可变容器类] ( /zh-cn/overviews/collections/concrete-mutable-collection-classes.html )
20
+ * [ 数组] ( /zh-cn/overviews/collections/arrays.html )
21
+ * [ 字符串] ( /zh-cn/overviews/collections/strings.html )
22
+ * [ 性能特点] ( /zh-cn/overviews/collections/performance-characteristics.html )
23
+ * [ 等价性] ( /zh-cn/overviews/collections/equality.html )
24
+ * [ 视图] ( /zh-cn/overviews/collections/views.html )
25
+ * [ Iterators] ( /zh-cn/overviews/collections/iterators.html )
26
+ * [ 从头定义新容器] ( /zh-cn/overviews/collections/creating-collections-from-scratch.html )
27
+ * [ Java和Scala容器的转换] ( /zh-cn/overviews/collections/conversions-between-java-and-scala-collections.html )
28
+ * [ Scala 2.7迁移指南] ( /zh-cn/overviews/collections/migrating-from-scala-27.html )
29
+ * [ Scala容器类体系结构] ( /zh-cn/overviews/core/architecture-of-scala-collections.html )
30
+ * [ 字符串插值] ( /zh-cn/overviews/core/string-interpolation.html ) <span class =" label success " >New in 2.10</span >
31
+ * [ Implicit Classes] ( /zh-cn/overviews/core/implicit-classes.html ) <span class =" label success " >New in 2.10</span >
32
+ * [ Value Classes and Universal Traits] ( /zh-cn/overviews/core/value-classes.html ) <span class =" label success " >New in 2.10</span >
24
33
25
- ## Scala’s Collections Library
34
+ <div class =" page-header-index " >
35
+ <h2 >Parallel and Concurrent Programming</h2 >
36
+ </div >
37
+ * [ Future和Promise] ( /zh-cn/overviews/core/futures.html ) <span class =" label success " >New in 2.10</span >
38
+ * Scala的并行容器类
39
+ * [ 概述] ( /zh-cn/overviews/parallel-collections/overview.html )
40
+ * [ 具体并行集合类] ( /zh-cn/overviews/parallel-collections/concrete-parallel-collections.html )
41
+ * [ 并行容器的转换] ( /zh-cn/overviews/parallel-collections/conversions.html )
42
+ * [ 并发字典树] ( /zh-cn/overviews/parallel-collections/ctries.html )
43
+ * [ 并行集合库的架构] ( /zh-cn/overviews/parallel-collections/architecture.html )
44
+ * [ 创建自定义并行容器] ( /zh-cn/overviews/parallel-collections/custom-parallel-collections.html )
45
+ * [ 配置并行集合] ( /zh-cn/overviews/parallel-collections/configuration.html )
46
+ * [ 测量性能] ( /zh-cn/overviews/parallel-collections/performance.html )
47
+ * [ Scala Actors迁移指南] ( /zh-cn/overviews/core/actors-migration-guide.html ) <span class =" label success " >New in 2.10</span >
48
+ * [ The Scala Actors API] ( /zh-cn/overviews/core/actors.html ) <span class =" label important " >Deprecated</span >
26
49
27
- - [ Introduction] ( collections/Introduction.md )
28
- - [ Mutable and Immutable Collections] ( collections/Mutable_and_Immutable_Collections.md )
29
- - [ Trait Traversable] ( collections/Trait_Traversable.md )
30
- - [ Trait Iterable] ( collections/Trait_Iterable.md )
31
- - [ The sequence traits Seq, IndexedSeq, and LinearSeq] ( collections/The_sequence_traits.md )
32
- - [ Sets] ( collections/Sets.md )
33
- - [ Maps] ( collections/Maps.md )
34
- - [ Concrete Immutable Collection Classes] ( collections/Concrete_Immutable_Collection_Classes.md )
35
- - [ Concrete Mutable Collection Classes] ( collections/Concrete_Mutable_Collection_Classes.md )
36
- - [ Arrays] ( collections/Arrays.md )
37
- - [ Strings] ( collections/Strings.md )
38
- - [ Performance Characteristics] ( collections/Performance_Characteristics.md )
39
- - [ Equality] ( collections/Equality.md )
40
- - [ Views] ( collections/Views.md )
41
- - [ Iterators] ( collections/Iterators.md )
42
- - [ Creating Collections From Scratch] ( collections/Creating_Collections_From_Scratch.md )
43
- - [ Conversions Between Java and Scala Collections] ( collections/Conversions_Between_Java_and_Scala_Collections.md )
44
- - [ Migrating from Scala 2.7] ( collections/Migrating_from_Scala_2_7.md )
50
+ <div class =" page-header-index " >
51
+ <h2 >Acknowledgements</h2 >
52
+ </div >
53
+ * [ 致谢名单] ( /zh-cn/overviews/thanks.html )
0 commit comments