diff --git a/chapter1/01_swift.html b/chapter1/01_swift.html index bc3ed143..0a91c891 100644 --- a/chapter1/01_swift.html +++ b/chapter1/01_swift.html @@ -46,7 +46,7 @@ -
+
@@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    关于 Swift

    Swift 是一种新的编程语言,用于编写 iOS 和 OS X 应用程序。Swift 结合了 C 和 Objective-C 的优点并且不受C的兼容性的限制。Swift 使用安全的编程模式并添加了很多新特性,这将使编程更简单,扩展性更强,也更有趣。除此之外,Swift 还支持人见人爱的 Cocoa 和 Cocoa Touch 框架。拥有了这些特性,Swift将重新定义软件开发。

    @@ -603,8 +604,8 @@ - - + + diff --git a/chapter1/02_a_swift_tour.html b/chapter1/02_a_swift_tour.html index 410189c5..ec4ed62e 100644 --- a/chapter1/02_a_swift_tour.html +++ b/chapter1/02_a_swift_tour.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    Swift 初见

    本页内容包括:

    @@ -1109,8 +1110,8 @@ anyCommonElements([1, 2, 3], [3]) - - + + diff --git a/chapter1/chapter1.html b/chapter1/chapter1.html index dfd99082..fef3b374 100644 --- a/chapter1/chapter1.html +++ b/chapter1/chapter1.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    欢迎使用 Swift

    在本章中您将了解 Swift 的特性和开发历史,并对 Swift 有一个初步的了解。

    @@ -598,8 +599,8 @@ - - + + diff --git a/chapter2/01_The_Basics.html b/chapter2/01_The_Basics.html index 73da538e..451accc6 100644 --- a/chapter2/01_The_Basics.html +++ b/chapter2/01_The_Basics.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    基础部分

    Swift 是 iOS 和 OS X 应用开发的一门新语言。然而,如果你有 C 或者 Objective-C 开发经验的话,你会发现 Swift 的很多内容都是你熟悉的。

    @@ -771,6 +772,188 @@ let pi = Double(three) + pointOneFourOneFiveNine

    当用这种方式来初始化一个新的整数值时,浮点值会被截断。也就是说4.75会变成4-3.9会变成3

    注意:结合数字类常量和变量不同于结合数字类原始值。原始值3可以直接和原始值0.14159相加,因为数字原始值本身没有明确的类型。它们的类型只在编译器需要求值的时候被推测。

    +
    +

    类型别名

    +

    类型别名就是给现有类型定义一个可选名字。你可以使用typealias关键字来定义类型别名。

    +

    当你想要给现有类型起一个更有意义的名字时,类型别名非常有用。假设你正在处理特定长度的外部资源的数据:

    +
    typealias AudioSample = UInt16
    +

    定义了一个类型别名之后,你可以在任何使用原始名的地方使用别名:

    +
    var maxAmplitudeFound = AudioSample.min
    +// maxAmplitudeFound 现在是 0
    +

    本例中,AudioSample被定义为UInt16的一个别名。因为它是别名,AudioSample.min实际上是UInt16.min,所以会给maxAmplitudeFound赋一个初值0

    +

    布尔值

    +

    Swift 有一个基本的布尔类型,叫做Bool。布尔值是指逻辑,因为它们只能是真或者假。Swift 有两个布尔常量,truefalse

    +
    let orangesAreOrange = true
    +let turnipsAreDelicious = false
    +

    orangesAreOrangeturnipsAreDelicious的类型会被推测为Bool,因为它们的初值是布尔原始值。就像之前提到的IntDouble一样,如果你创建变量的时候给它们赋值true或者false,那你不需要给常量或者变量标明Bool类型。初始化常量或者变量的时候如果所赋的值类型已知,就可以触发类型推测,这让 Swift 代码更加简洁并且可读性更高。

    +

    当你编写条件语句比如if语句的时候,布尔值非常有用:

    +
    if turnipsAreDelicious {
    +    println("Mmm, tasty turnips!")
    +} else {
    +    println("Eww, turnips are horrible.")
    +}
    +// 输出 "Eww, turnips are horrible."
    +

    条件语句比如if语句的详细介绍参见控制流(待添加链接)

    +

    如果你在需要使用Bool类型的地方使用了非布尔值,Swift 的类型安全机制会报错。下面的例子会报告一个编译时错误:

    +
    let i = 1
    +if i {
    +    // 这个例子不会通过编译,会报错
    +}
    +

    然而,下面的例子是合法的:

    +
    let i = 1
    +if i == 1 {
    +    // 这个例子会编译成功
    +}
    +

    i == 1的比较结果是Bool类型,所以第二个例子可以通过类型检查。类似i == 1这样的比较会在基本操作符(待添加链接)中详细讨论。

    +

    和 Swift 中的其他类型安全的例子一样,这个方法可以避免错误并保证这块代码的作用总是在意料之中。

    +

    元组

    +

    元组把多个值组合成一个复合值。元组内的值可以使任意类型,并不要求是相同类型。

    +

    下面这个例子中,(404, "Not Found")是一个描述 HTTP 状态码的元组。HTTP 状态码是当你请求网页的时候 web 服务器返回的一个特殊值。如果你请求的网页不存在就会返回一个404 Not Found状态码。

    +
    let http404Error = (404, "Not Found")
    +// http404Error 的类型是 (Int, String),值是 (404, "Not Found")
    +

    (404, "Not Found")元组把一个Int值和一个String值组合起来表示 HTTP 状态码的两个部分:一个数字和一个可以读懂的描述。这个元组可以被描述为“一个类型为(Int, String)的元组”。

    +

    你可以把任意顺序的类型组合成一个元组,这个元组可以包含所有类型。只要你想,你可以创建一个类型为(Int, Int, Int)或者(String, Bool)或者包含其他类型的元组。

    +

    你可以将一个元组的内容分解成单独的常量和变量,然后你就可以正常使用它们了:

    +
    let (statusCode, statusMessage) = http404Error
    +println("The status code is \(statusCode)")
    +// 输出 "The status code is 404"
    +println("The status message is \(statusMessage)")
    +// 输出 "The status message is Not Found"
    +

    如果你只需要一部分元组值,分解的时候可以把要忽略的部分设置成_

    +
    let (justTheStatusCode, _) = http404Error
    +println("The status code is \(justTheStatusCode)")
    +// 输出 "The status code is 404"
    +

    此外,你还可以通过下标来访问元组中的单个元素,下标从零开始:

    +
    println("The status code is \(http404Error.0)")
    +// 输出 "The status code is 404"
    +println("The status message is \(http404Error.1)")
    +// 输出 "The status message is Not Found"
    +

    你可以在定义元组的时候给单个元素命名:

    +
    let http200Status = (statusCode: 200, description: "OK")
    +

    给元组中的元素命名后,你可以通过名字来获取这些元素的值:

    +
    println("The status code is \(http200Status.statusCode)")
    +// 输出 "The status code is 200"
    +println("The status message is \(http200Status.description)")
    +// 输出 "The status message is OK"
    +

    作为函数返回值时,元组非常有用。一个用来获取网页的函数可能会返回一个(Int, String)元组来描述是否获取成功。和只能返回一个类型的值比较起来,一个包含两个不同类型值的元组可以让函数的返回信息更有用。详情参见返回多个值的函数(待添加链接)

    +
    +

    注意:元组在临时组织值的时候很有用,但是并不适合创建复杂的数据结构。如果你的数据结构并不是临时使用,请使用类或者结构体而不是元组。详情参见类和结构体(待添加链接)

    +
    +

    可选

    +

    使用可选来处理值可能缺失的情况。可选表示:

    +
      +
    • 有值,等于 x
    • +
    +

    或者

    +
      +
    • 没有值
    • +
    +
    +

    注意:C 和 Objective-C 中并没有可选这个概念。最接近的是 Objective-C 中的一个特性,一个方法要不返回一个对象要不返回nilnil表示“缺少一个合法的对象”。然而,这只对对象起作用——对于结构体,基本的 C 类型或者美剧类型不起作用。对于这些类型,Objective-C 方法一般会返回一个特殊值(比如NSNotFound)来暗示值缺失。这种方法假设方法的调用者知道并记得对特殊值进行判断。然而,Swift 的可选可以让你暗示任意类型的值缺失,并不需要一个特殊值。

    +
    +

    来看一个例子。Swift 的String类型有一个叫做toInt的方法,作用是将一个String值转换成一个Int值。然而,并不是所有的字符串都可以转换成一个整数。字符串"123"可以被转换成数字123,但是字符串"hello, world"不行。

    +

    下面的例子使用toInt方法来尝试将一个String转换成Int

    +
    let possibleNumber = "123"
    +let convertedNumber = possibleNumber.toInt()
    +// convertedNumber 被推测为类型 "Int?", 或者类型 "optional Int"
    +

    因为toInt方法可能会失败,所以它返回一个可选的Int,而不是一个Int。一个可选的Int被写作Int?而不是Int。问号暗示包含的值是可选,也就是说可能包含Int值也可能不包含值。(不能包含其他任何值比如Bool值或者String值。只能是Int或者什么都没有。)

    +

    if 语句以及强制解析

    +

    你可以使用if语句来判断一个可选是否包含值。如果可选有值,结果是true;如果没有值,结果是false

    +

    当你确定可选包含值之后,你可以在可选的名字后面加一个!来获取值。这个惊叹号表示“我知道这个可选有值,请使用它。”这被称为可选值的强制解析:

    +
    if convertedNumber {
    +    println("\(possibleNumber) has an integer value of \(convertedNumber!)")
    +} else {
    +    println("\(possibleNumber) could not be converted to an integer")
    +}
    +// 输出 "123 has an integer value of 123"
    +

    更多关于if语句的内容参见控制流(待添加链接)

    +
    +

    注意:使用!来获取一个不存在的可选值会导致运行时错误。。使用!来强制解析值之前,一定要确定可选包含一个非nil的值。

    +
    +

    可选绑定

    +

    使用可选绑定来判断可选是否包含值,如果包含就把值赋给一个临时常量或者变量。可选绑定可以用在ifwhile语句中来对可选的值进行判断并把值赋给一个常量或者变量。ifwhile语句详情参见控制流

    +

    像下面这样写一个可选绑定:

    +
    if let constantName = someOptional {
    +    statements
    +}
    +

    你可以像上面这样使用可选绑定来重写possibleNumber这个例子:

    +
    if let actualNumber = possibleNumber.toInt() {
    +    println("\(possibleNumber) has an integer value of \(actualNumber)")
    +} else {
    +    println("\(possibleNumber) could not be converted to an integer")
    +}
    +// 输出 "123 has an integer value of 123"
    +

    这段代码可以被理解为:

    +

    “如果possibleNumber.toInt返回的可选Int包含一个值,创建一个叫做actualNumber的新常量并将可选包含的值赋给它。”

    +

    如果转换成功,actualNumber常量可以在if语句的第一个分支中使用。它已经被可选包含的值初始化过,所以不需要再使用!后缀来获取它的值。在这个例子中,actualNumber只被用来输出转换结果。

    +

    你可以在可选绑定中使用常量和变量。如果你想在if语句的第一个分支中操作actualNumber的值,你可以改成if var actualNumber,这样可选包含的值就会被赋给一个变量。

    +

    nil

    +

    你可以给可选变量赋值为nil来表示它没有值:

    +
    var serverResponseCode: Int? = 404
    +// serverResponseCode 包含一个可选的 Int 值 404
    +serverResponseCode = nil
    +// serverResponseCode 现在不包含值
    +
    +

    注意:nil不能用于非可选的常量和变量。如果你的代码中有常量或者变量需要处理值缺失的情况,请把它们声明成对应的可选类型。

    +
    +

    如果你声明一个可选常量或者变量但是没有赋值,它们会自动被设置为nil

    +
    var surveyAnswer: String?
    +// surveyAnswer 被自动设置为 nil
    +
    +

    注意:Swift 的nil和 Objective-C 中的nil并不一样。在 Objective-C 中,nil是一个指向不存在对象的指针。在 Swift 中,nil不是指针——它是一个确定的值,用来表示值缺失。任何类型的可选都可以被设置为nil,不只是对象类型。

    +
    +

    隐式解析可选

    +

    如上所述,可选暗示了常量或者变量可以“没有值”。可选可以通过if语句来判断是否有值,如果有值的话可以通过可选绑定来解析值。

    +

    有时候在程序架构中,第一次被赋值之后,可以确定一个可选总会有值。在这种情况下,每次都要判断和解析可选值是非常低效的,因为可以确定它总会有值。

    +

    这种类型的可选被定义为隐式解析可选。把后缀?改成!来声明一个隐式解析可选,比如String!

    +

    当可选被第一次赋值之后就可以确定之后一直有值的时候,隐式解析可选非常有用。隐式解析可选主要被用在 Swift 中类的构造过程中,详情参见无主引用和隐式解析可选属性(Unowned References and Implicitly Unwrapped Optional Properties待添加链接)

    +

    一个隐式解析可选其实就是一个普通的可选,但是可以被当做非可选来使用,并不需要每次都使用解析来获取可选值。下面的例子展示了可选String和隐式解析可选String之间的区别:

    +
    let possibleString: String? = "An optional string."
    +println(possibleString!) // 需要惊叹号来获取值
    +// 输出 "An optional string."
    +
    +let assumedString: String! = "An implicitly unwrapped optional string."
    +println(assumedString)  // 不需要惊叹号
    +// 输出 "An implicitly unwrapped optional string."
    +

    你可以把隐式解析可选当做一个可以自动解析的可选。你要做的只是声明的时候把惊叹号放到类型的结尾,而不是每次获取值的变量结尾。

    +
    +

    注意:如果你在隐式解析可选没有值的时候尝试获取,会触发运行时错误。和你在没有值的普通可选后面加一个惊叹号一样。

    +
    +

    你仍然可以把隐式解析可选当做普通可选来判断它是否包含值: + if assumedString { + println(assumedString) + } + // 输出 "An implicitly unwrapped optional string."

    +

    你也可以在可选绑定中使用隐式解析可选来检查并解析它的值: + if let definiteString = assumedString { + println(definiteString) + } + // 输出 "An implicitly unwrapped optional string."

    +
    +

    注意:如果一个变量之后可能变成nil的话请不要使用隐式解析可选。如果你需要在变量的生命周期中判断是否是nil的话,请使用普通可选类型。

    +
    +

    断言

    +

    可选可以让你判断值是否存在,你可以在代码中优雅地处理值缺失的情况。然而,在某些情况下,如果值缺失或者值并不满足特定的条件,你的代码可能并不需要继续执行。这时,你可以在你的代码中触发一个断言来结束代码运行并通过调试来找到值缺失的原因。

    +

    使用断言来调试

    +

    断言会在运行时判断一个逻辑条件是否为true。从字面意思来说,断言“断言”一个条件是否为真。你可以使用断言来保证在运行其他代码之前,某些重要的条件已经被满足。如果条件判断为true,代码运行会继续进行;如果条件判断为false,代码运行停止,你的应用被终止。

    +

    如果你的代码在调试环境下触发了一个断言,比如你在 Xcode 中构建并运行一个应用,你可以清楚地看到不合法的状态发生在哪里并检查断言被触发时你的应用的状态。此外,断言允许你附加一条调试信息。

    +

    你可以使用全局assert函数来写一个断言。给assert函数传入一个结果为true或者false的表达式以及一条信息,当表达式为false的时候这条信息会被显示:

    +
    let age = -3
    +assert(age >= 0, "A person's age cannot be less than zero")
    +// 因为 age < 0,所以断言会触发
    +

    在这个例子中,只有age >= 0true的时候代码运行才会继续,也就是说,当age的值非负的时候。如果age的值是负数,就像代码中那样,age >= 0false,断言被触发,结束应用。

    +

    断言信息不能使用字符串插值。断言信息可以省略,就像这样:

    +
    assert(age >= 0)
    +

    何时使用断言

    +

    当条件可能为假时使用断言,但是最终一定要保证条件为真,这样你的代码才能继续运行。断言的适用情景:

    +
      +
    • 整数的下标(subscript)索引被传入一个自定义下标实现,但是下标索引值可能太小或者太大。
    • +
    • 需要给函数传入一个值,但是非法的值可能导致函数不能正常执行。
    • +
    • 一个可选值现在是nil,但是后面的代码运行需要一个非nil值。
    • +
    +

    查看下标(链接待添加)函数(链接待添加)

    +
    +

    注意:断言可能导致你的应用终止运行,所以你应当仔细设计你的代码来让非法条件不会出现。然而,在你的应用发布之前,有时候非法条件可能出现,这时使用断言可以快速发现问题。

    @@ -791,8 +974,8 @@ let pi = Double(three) + pointOneFourOneFiveNine - - + + diff --git a/chapter2/02_Basic_Operators.html b/chapter2/02_Basic_Operators.html index 1a333cfb..162391d2 100644 --- a/chapter2/02_Basic_Operators.html +++ b/chapter2/02_Basic_Operators.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/03_Strings_and_Characters.html b/chapter2/03_Strings_and_Characters.html index 020363ed..61dcea0e 100644 --- a/chapter2/03_Strings_and_Characters.html +++ b/chapter2/03_Strings_and_Characters.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    字符串和字符 (Strings and Characters)

    String 是一个有序的字符集合,例如 "hello, world", "albatross"。 @@ -846,8 +847,8 @@ print("\n") - - + + diff --git a/chapter2/04_Collection_Types.html b/chapter2/04_Collection_Types.html index a2e8596d..fe71406e 100644 --- a/chapter2/04_Collection_Types.html +++ b/chapter2/04_Collection_Types.html @@ -46,7 +46,7 @@ -

    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/05_Control_Flow.html b/chapter2/05_Control_Flow.html index 69f6978f..c2ccd1e5 100644 --- a/chapter2/05_Control_Flow.html +++ b/chapter2/05_Control_Flow.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/06_Functions.html b/chapter2/06_Functions.html index b340cc34..5c18d9ff 100644 --- a/chapter2/06_Functions.html +++ b/chapter2/06_Functions.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    函数(Functions)

    函数是用来完成特定任务的独立的代码块。你给一个函数起一个合适的名字,用来标示函数做什么,并且当函数需要执行的时候,这个名字会被“调用”。

    @@ -624,8 +625,8 @@ - - + + diff --git a/chapter2/07_Closures.html b/chapter2/07_Closures.html index df970c89..5c48f904 100644 --- a/chapter2/07_Closures.html +++ b/chapter2/07_Closures.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    闭包

    闭包是功能性自包含模块,可以在代码中被传递和使用。 @@ -827,8 +828,8 @@ alsoIncrementByTen() - - + + diff --git a/chapter2/08_Enumerations.html b/chapter2/08_Enumerations.html index 4e090e9e..f23347a2 100644 --- a/chapter2/08_Enumerations.html +++ b/chapter2/08_Enumerations.html @@ -46,7 +46,7 @@ -

    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/09_Classes_and_Structures.html b/chapter2/09_Classes_and_Structures.html index 47d2ea44..801b2c79 100644 --- a/chapter2/09_Classes_and_Structures.html +++ b/chapter2/09_Classes_and_Structures.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    类和结构体

    @@ -597,8 +598,8 @@ - - + + diff --git a/chapter2/10_Properties.html b/chapter2/10_Properties.html index 47b299e8..a2c3defe 100644 --- a/chapter2/10_Properties.html +++ b/chapter2/10_Properties.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/11_Methods.html b/chapter2/11_Methods.html index 7a992503..43e0f7e8 100644 --- a/chapter2/11_Methods.html +++ b/chapter2/11_Methods.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/12_Subscripts.html b/chapter2/12_Subscripts.html index 2dc80ae8..ade5c334 100644 --- a/chapter2/12_Subscripts.html +++ b/chapter2/12_Subscripts.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/13_Inheritance.html b/chapter2/13_Inheritance.html index 55a16277..9e308d1c 100644 --- a/chapter2/13_Inheritance.html +++ b/chapter2/13_Inheritance.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/14_Initialization.html b/chapter2/14_Initialization.html index 6b41f6fe..6af4651d 100644 --- a/chapter2/14_Initialization.html +++ b/chapter2/14_Initialization.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/15_Deinitialization.html b/chapter2/15_Deinitialization.html index 6c8a2487..0a7edce0 100644 --- a/chapter2/15_Deinitialization.html +++ b/chapter2/15_Deinitialization.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/16_Automatic_Reference_Counting.html b/chapter2/16_Automatic_Reference_Counting.html index 3bf10759..d66bb1e2 100644 --- a/chapter2/16_Automatic_Reference_Counting.html +++ b/chapter2/16_Automatic_Reference_Counting.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    自动引用计数

    Swift使用自动引用计数(ARC)这一机制来跟踪和管理你的应用程序的内存。通常情况下,Swift的内存管理机制会一直起着作用,你无须自己来考虑内存的管理。ARC会在类的实例不再被使用时,自动释放其占用的内存。

    @@ -608,8 +609,8 @@ - - + + diff --git a/chapter2/17_Optional_Chaining.html b/chapter2/17_Optional_Chaining.html index a7084120..9282d202 100644 --- a/chapter2/17_Optional_Chaining.html +++ b/chapter2/17_Optional_Chaining.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/18_Type_Casting.html b/chapter2/18_Type_Casting.html index a41f9b8a..984c4ece 100644 --- a/chapter2/18_Type_Casting.html +++ b/chapter2/18_Type_Casting.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/19_Nested_Types.html b/chapter2/19_Nested_Types.html index dcc04e5c..ab7bed13 100644 --- a/chapter2/19_Nested_Types.html +++ b/chapter2/19_Nested_Types.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    类型嵌套

    枚举类型常被用于实现特定类或结构体的功能。也能够在有多种变量类型的环境中,方便地定义通用类或结构体来使用,为了实现这种功能,Swift允许你定义类型嵌套,可以在枚举类型、类和结构体中定义支持嵌套的类型。

    @@ -653,8 +654,8 @@ println("theAceOfSpades: \(theAceOfSpades.description)") - - + + diff --git a/chapter2/20_Extensions.html b/chapter2/20_Extensions.html index 82fae1d3..be67de92 100644 --- a/chapter2/20_Extensions.html +++ b/chapter2/20_Extensions.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/21_Protocols.html b/chapter2/21_Protocols.html index 79f91fc3..1fddda7e 100644 --- a/chapter2/21_Protocols.html +++ b/chapter2/21_Protocols.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/22_Generics.html b/chapter2/22_Generics.html index 90233e18..ccbba2b3 100644 --- a/chapter2/22_Generics.html +++ b/chapter2/22_Generics.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    泛型


    @@ -941,8 +942,8 @@ var arrayOfStrings = ["uno", - + + diff --git a/chapter2/23_Advanced_Operators.html b/chapter2/23_Advanced_Operators.html index d0bc137a..55fc0e75 100644 --- a/chapter2/23_Advanced_Operators.html +++ b/chapter2/23_Advanced_Operators.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter2/chapter2.html b/chapter2/chapter2.html index b26483f3..d88393da 100644 --- a/chapter2/chapter2.html +++ b/chapter2/chapter2.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    Swift 教程

    本章介绍了 Swift 的各种特性及其使用方法,是全书的核心部分。

    @@ -598,8 +599,8 @@ - - + + diff --git a/chapter3/01_About_the_Language_Reference.html b/chapter3/01_About_the_Language_Reference.html index fa39c8d3..b9a42903 100644 --- a/chapter3/01_About_the_Language_Reference.html +++ b/chapter3/01_About_the_Language_Reference.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -575,7 +576,7 @@
    -
    +

    关于语言附注

    本书的这一节描述了Swift编程语言的形式语法。这里描述的语法是为了帮助您更详细的了解该语言,而不是让您直接实现一个解析器或编译器。

    @@ -623,8 +624,8 @@ - - + + diff --git a/chapter3/02_Lexical_Structure.html b/chapter3/02_Lexical_Structure.html index 78a0e0f6..6ecabfd6 100644 --- a/chapter3/02_Lexical_Structure.html +++ b/chapter3/02_Lexical_Structure.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter3/03_Types.html b/chapter3/03_Types.html index e5d953f8..5203f984 100644 --- a/chapter3/03_Types.html +++ b/chapter3/03_Types.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter3/04_Expressions.html b/chapter3/04_Expressions.html index 915b9225..1fe0d45b 100644 --- a/chapter3/04_Expressions.html +++ b/chapter3/04_Expressions.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter3/05_Declarations.html b/chapter3/05_Declarations.html index 9272bba6..4a85edcb 100644 --- a/chapter3/05_Declarations.html +++ b/chapter3/05_Declarations.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter3/06_Attributes.html b/chapter3/06_Attributes.html index 8931b763..80b7fe7f 100644 --- a/chapter3/06_Attributes.html +++ b/chapter3/06_Attributes.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter3/07_Patterns.html b/chapter3/07_Patterns.html index d491aa79..cf039cb2 100644 --- a/chapter3/07_Patterns.html +++ b/chapter3/07_Patterns.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter3/08_Generic_Parameters_and_Arguments.html b/chapter3/08_Generic_Parameters_and_Arguments.html index 8a7608da..d87c8db0 100644 --- a/chapter3/08_Generic_Parameters_and_Arguments.html +++ b/chapter3/08_Generic_Parameters_and_Arguments.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/chapter3/09_Summary_of_the_Grammar.html b/chapter3/09_Summary_of_the_Grammar.html index 4562ef5f..5fea2c43 100644 --- a/chapter3/09_Summary_of_the_Grammar.html +++ b/chapter3/09_Summary_of_the_Grammar.html @@ -44,7 +44,7 @@ -
    +
    @@ -479,7 +479,8 @@
  • Generated using GitBook
  • - +
  • @@ -586,8 +587,8 @@ - - + + diff --git a/chapter3/chapter3.html b/chapter3/chapter3.html index d127d5d4..fd6bf6f9 100644 --- a/chapter3/chapter3.html +++ b/chapter3/chapter3.html @@ -46,7 +46,7 @@ -
    +
    @@ -481,7 +481,8 @@
  • Generated using GitBook
  • - +
  • @@ -590,8 +591,8 @@ - - + + diff --git a/gitbook/jsrepl/sandbox.html b/gitbook/jsrepl/sandbox.html index b04282e7..3a5703c9 100755 --- a/gitbook/jsrepl/sandbox.html +++ b/gitbook/jsrepl/sandbox.html @@ -1,4 +1,5 @@ - + TYPE html> jsREPL Sandbox diff --git a/index.html b/index.html index d1f61896..476c4e29 100644 --- a/index.html +++ b/index.html @@ -44,7 +44,7 @@ -
    +
    @@ -479,7 +479,8 @@
  • Generated using GitBook
  • - +
  • @@ -573,7 +574,7 @@
    -
    +

    Swift 编程语言

    Swift 是苹果在 WWDC 2014 上发布的一款全新的编程语言,本书译自苹果官方的 Swift 教程《The Swift Programming Language》。

    @@ -595,8 +596,8 @@ - - + + @@ -624,20 +625,4 @@ require(["gitbook"], function(gitbook) { - - - - - - - - - - - diff --git a/manifest.appcache b/manifest.appcache index 5862380d..e35c598b 100644 --- a/manifest.appcache +++ b/manifest.appcache @@ -1,5 +1,5 @@ CACHE MANIFEST -# Revision 1402050704575 +# Revision 1402067788810 CACHE: index.html @@ -24,8 +24,8 @@ chapter2/15_Deinitialization.html chapter2/16_Automatic_Reference_Counting.html chapter2/17_Optional_Chaining.html chapter2/18_Type_Casting.html -chapter2/19_Nested_Types.html chapter2/20_Extensions.html +chapter2/19_Nested_Types.html chapter2/21_Protocols.html chapter2/22_Generics.html chapter2/23_Advanced_Operators.html diff --git a/search_index.json b/search_index.json index 3e60ed59..9d8824d1 100644 --- a/search_index.json +++ b/search_index.json @@ -1 +1 @@ -{"version":"0.5.2","fields":[{"name":"title","boost":10},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"index.html#gitbook_7":["2014","languag","program","swift","undefinedundefin","wwdc"],"chapter1/01_swift.html#gitbook_8":["arc","automat","c","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","count","c的兼容性的限制。swift","foundat","hello","io","objective-c","os","refer","swift","touch","undefinedundefin","world","x"],"chapter1/02_a_swift_tour.html#gitbook_9":["0","0..3","0..time","0.0","1","10","100","103","11","12","13","16","19","2","2.5","20","25","3","3.0","3.1","3.59","3.69","3.79","4","42","43","5","5.2","50","597","69105","7","7.simpledescript","70","70.0","75","8","87","8:09","9","9.9","94","a.adjust","a.simpledescript","ac","ace.toraw","acerawvalu","add","addon","addone(numb","adescript","adjust","amount","anoth","anotherproperti","ant","anycommonel","anycommonelements([1","appl","applese","applesummari","area","b","b.adjust","b.simpledescript","bdescript","blue","bool","bottl","c","captain","card","card(rank","card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit","case","catfish","celeri","chees","class","club","condit","condition(item","convertedrank","convertedrank.simpledescript","count","counter","counter.incrementby(2","cucumb","dai","default","deinit","diamond","dictionary(item","result","result(str","result(sunris","return","returnfifteen","rh","rhsitem","sandwich","score","secondforloop","see","self","self.nam","self.sidelength","self被用来区别实例变量。当你创建实例的时候,像传入函数参数一样给类传入构造器的参数。每个属性都需要赋值——无论是通过声明(就像numberofsides)还是通过构造器(就像nam","sequenc","serverrespons","serverresponse.error(\"out","serverresponse.result(\"6:00","serverresponse和switch","set","setter","seven","shape","shape.numberofsid","shape.simpledescript","shapedescript","shape类缺少了一些重要的东西:一个构造函数来初始化类实例。使用init","shoppinglist","shoppinglist[1","side","sidelength","simpl","simpleclass","simpledescript","simplestructur","simplestructure时候mutating关键字用来标记一个会修改结构体的方法。simpleclass","six","size","some(100","some(t","sort([1","soup","spade","spici","squar","square(sidelength","square.sidelength","standard","string","string(self.toraw","string(width","struct","structur","success","suit","suit.heart","suit.simpledescript","suit添加一个color方法,对spades和clubs返回“black”,对hearts和diamonds返回“r","sum","sumof","sumof(42","sumof(numb","sunris","sunset","super.init(nam","swift","switch","switch中匹配到的子句之后,程序会退出switch语句,并不会继续向下运行,所以不需要在每个子句结尾写break","t","t.generatortype.el","tast","tea","teamscor","ten","test","test.area","test.simpledescript","three","threedescript","threeofspad","threeofspades.simpledescript","threeofspadesdescript","time","todai","toraw和fromraw","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","true","tuesdai","tulip","two","type","u","u.generatortype.el","uncom","undefinedundefin","var","veget","vegetablecom","veri","water","watercress","where,只在冒号后面写接口或者类名。<t","width","widthlabel","willset","willset和didset","world","x","x.hassuffix(\"pepp","xcode","y"],"chapter1/chapter1.html#gitbook_10":["swift","undefinedundefin"],"chapter2/01_The_Basics.html#gitbook_12":["0","0.0","0.0125","0.14159","000123.456","0b","0b10001","0o","0o21","0x","0x11","0xc.3p0","0xfp-2","0xfp2","0x)。小数点两边必须有至少一个十进制数字(或者是十六进制的数字)。浮点原始值还有一个可选的指数,在十进制浮点数中通过大写或者小写的e来指定,在十六进制浮点数中通过大写或者小写的p","1","1.21875e1","1.25","1.25e-2","1.25e2","10","10^-2","10^2","12.1875","125.0","15","17","1_000_000","1_000_000.000_000_1","255","2^-2","2^2","2_000","3","3.14159","3.14159,0.1和-273.15","3.75","32位平台上,int和int32","32位平台上,uint和uint32","3可以直接和原始值0.14159","3没有显式声明类型,而表达式中出现了一个浮点原始值,所以表达式会被推测为doubl","4.75会变成4,-3.9会变成3","42","42和-23","42和3.14159","42并且没有标明类型,swift","60.0","64位平台上,int和int64","64位平台上,uint和uint64","8、16、32和64","8位无符号整数类型是uint8,32位有符号整数类型是int32","anotherpi","array和dictionari","binaryinteg","bonjour","c","cannotbeneg","cat","chang","cocoa里的nslog函数一样,println","comment","compile-tim","current","currentloginattempt","decimaldoubl","decimalinteg","dogcow","doubl","double(thre","double或者float","double精确度很高,至少有15位数字,而float最少只有6","double而不是float","double表示64","end","error","exponentdoubl","exp,那这个数相当于基数和10^exp","exp,那这个数相当于基数和2^exp","first","float表示32","friendlywelcom","friendlywelcome的值从"hello!"改为了"bonjour!"","hello","hexadecimaldoubl","hexadecimalinteg","int","int(pi","int8","int8.max","int8类型的常量或者变量可以存储的数字范围是-128~127,uint8类型的常量或者变量能存储的数字范围是0~255","integerpi","interpolation)的方式把常量名或者变量名当做占位符加入到长字符串中,swift会用当前常量或变量的值替换这些占位符。将常量或变量名放入反斜杠符加一对圆括号中"\\()"","intuint","int就够了。这可以提高代码一致性和可复用性。即使是在32位平台上,int可以存储的整数范围也可以达到-2147483648~2147483647","int是整型;double和float是浮点型;bool是布尔型;string是字符串。swift","int类型更大或者更小的数字。swift","io","justoveronemillion","languagenam","let来声明常量,用var","line","maximumnumberofloginattempt","maximumnumberofloginattempts或者welcomemessage)和一个指定类型的值(比如数字10或者字符串hello","maximumnumberofloginattempts的新常量,并给它一个值10。然后,声明一个名字是currentloginattempt的变量并将它的值初始化为0","maxvalu","meaningoflif","minvalu","min和max","multilin","multipl","nest","nil","now","objc","objective-c","octalinteg","on","onemillion","option","os","over","paddeddoubl","pi","pointonefouronefivenin","print","println","println(\"th","println(\"thi","println(cat","println(friendlywelcom","println函数输出传入的str","println是一个用来输出的全局函数,输出的内容会在最后带换行。如果你用xcode,println将会输出内容到“console”面板上。(另一种函数叫print","second","sometype(ofinitialvalu","start","string","string”的意思是“可以存储任意str","string,你绝对不可能不小心传进去一个int","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","swift","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","swift用字符串插值(str","three","three的值被用来创建一个doubl","toobig","tupl","twothousand","twothousandandon","twothousand类型是uint16,然而常量one类型是uint8。它们不能直接相加,因为它们类型不同。所以要调用uint16(one)来创建一个新的uint16数字并用on","uint","uint16","uint16(on","uint16有一个构造器,可以接受一个uint8类型的值,所以这个构造器可以用现有的uint8来创建一个新的uint16。注意,你并不能传入任意类型的值,只能传入uint16","uint16,可以进行相加。目标常量twothousandandone的类型被推测为uint16,因为它是两个uint16","uint8","uint8.max","uint8.min","uint,除非你真的需要存储一个和当前平台原生字长相同的无符号整数。除了这种情况,最好使用int,即使你要存储的值已知是非负的。统一使用int","undefinedundefin","unicod","valu","var","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","written","x","y","z"],"chapter2/03_Strings_and_Characters.html#gitbook_13":["0","1","10","103","111","128054","128054,是一个十六进制1f436","144","159","16","182","2","2.5","21","240","3","33","39","4","40","5","55357","56374","6","68","7.5","8","act","act1scenecount","alik","anoth","anotheremptystr","api","ascii","blackheart","boolean","c","capulet'","carriag","cell","charact","character1","character2","characterpluscharact","characterplusstr","characters)字符串字面量初始化空字符串字符串可变性字符串是值类型使用字符(characters)计算字符数量连接字符串和字符字符串插值比较字符串字符串相等前缀/后缀相等大写和小写字符串unicodeunicod","cocoa","codeunit","compile-tim","consid","constantstr","countel","countelements(unusualmenageri","d","dog","dogstr","dogstring.unicodescalar","dogstring.utf16","dogstring.utf8","dollarsign","dollarsign、blackheart","double(multipli","dromedari","einstein","empti","emptystr","emptystring.isempti","enumer","equal","error","for-in","foundat","friar","g","good","great","hall","hasprefix","hasprefix/hassuffix","hello","help","here","highland","hors","imagin","import","initi","instruct","isempti","knowledg","koala","lawrence'","length","liter","look","loop","lot","lowercasestr","mansion","messag","more","morn","multipli","n","nn","nnnn","nnnnnnnn","normal","normal.lowercasestr","normal.uppercasestr","noth","nsmutablestr","nsstring","o","objective-c","orchard","outsid","over","penguin","place","pleas","print","print(\"\\(codeunit","print(\"\\(scalar.valu","print(\"\\n","println(\"\\(scalar","println(\"noth","println(\"ther","println(\"thes","println(\"unusualmenageri","println(charact","public","quot","quot;a"),u+1f425","quot;albatross"","quot;hello","quot;🐥"","quotat","r","romeoandjuliet","room","samequot","scalar","scene","scene.hasprefix(\"act","see","shouti","snail","somestr","sparklingheart","street","string","string1","string2","stringpluscharact","stringplusstr","structur","swift","syntax","t","terminolog","time","touch","two","type","u+0024","u+0061","u+1f436","u+1f496","u+2665","u+d83d","u+dc36","u0001f496","u2665","uin8","uint16","uint32","uint8","undefinedundefin","unicod","unicodescalar","unicodescalarview","unnnn","unnnnnnnn","unusualmenageri","uppercasestr","us","utf-16","utf-8","utf-8utf-16unicod","utf16","utf16count","utf16view","utf8","utf8view","valu","var","variablestr","verona","we'r","welcom","whisper","wiseword","work","world"","x24","xnn","yensign"],"chapter2/06_Functions.html#gitbook_16":["again","anna","argument","brian","func","function","func作为前缀。指定函数返回类型时,用返回箭头->","greet","greeting被调用,该函数结束它的执行并返回greet","hello","paramet","personnam","print","println(sayhello(\"anna","println(sayhello(\"brian","println(sayhelloagain(\"anna","quot;greetingforperson",之所以叫这个名字是因为这个函数用一个人的名字当做输入,并返回给这个人的问候语。为了完成这个任务,你定义一个输入参数-一个叫做personname的string值,和一个包含给这个人问候语的str","return","sayhello(personnam","sayhelloagain(personnam","sayhello。上面的例子展示的是用"anna"和"brian"","sayhello函数时,在圆括号中传给它一个string类型的实参。因为这个函数返回一个string类型的值,sayhello可以被包含在println","sayhello的函数体中,先定义了一个新的名为greeting的string常量,同时赋值了给personname的一个简单问候消息。然后用return关键字把这个问候返回出去。一旦return","string","swift","swift统一的函数语法足够灵活,可以用来表示任何函数,包括从最简单的没有参数名字的c风格函数,到复杂的带局部和外部参数名的objective-c","undefinedundefin"],"chapter2/07_Closures.html#gitbook_17":["0","0,$1,$2","0,这时闭包会将字符串输出,而map","1","10","10中,如果number为16,则返回6,58返回8,510返回0","16","16,58,510","16变成了1,58变成了5,510变成了51","2","20","3","30","4","40","5","50","510","58","6","7","8","9","alex","alsoincrementbyten","amount","arrai","b","backward","backwards(s1","barri","block","bool","c","captur","caputur","chri","closur","constant","cycl","daniella","digitnam","digitnames[numb","eight","equal","ewa","five","fiveeight","fiveonezero","force-unwrap","forincr","four","func","function","gt","incrementbyseven","incrementbysevn","incrementbyten","incrementor","inout","int","kei","lambda","makeincrementor","makeincrementor(forincr","map","name","nine","note","number","numbers.map","objective-c","on","onesix","oper","option","output","paramet","quot;a"","quot;alex"","quot;b"","quot;barry"","quot;fiveeight"","quot;fiveonezero"","quot;onesix"","quot;tim"","quot;tom"","quot;大于"","quot;按照字母顺序后出现"","refer","return","returntyp","return参数名称缩写运算符函数trail","revers","runingtot","runningtot","s1","s2","s2),backward","seven","six","somefunctionthattakesaclosur","somefunctionthattakesaclosure(closur","sort","sort(nam","statement","string","strong","swift","three","trail","true","two","type","undefinedundefin","valu","var","variabl","zero"],"chapter2/09_Classes_and_Structures.html#gitbook_19":["undefinedundefin"],"chapter2/16_Automatic_Reference_Counting.html#gitbook_26":["arc","arc为了能帮助你管理内存,需要更多的关于你的代码之间关系的信息。本章描述了这些情况,并且为你示范怎样启用arc","arc会分配一大块内存用来储存实例的信息。内存中会包含实例的类型信息,以及这个实例所有相关属性的值。此外,当实例不再被使用时,arc","arc会跟踪和计算每一个类实例正在被多少属性,常量和变量所引用。哪怕实例的引用数为一,arc","swift使用自动引用计数(arc)这一机制来跟踪和管理你的应用程序的内存。通常情况下,swift的内存管理机制会一直起着作用,你无须自己来考虑内存的管理。arc","undefinedundefin"],"chapter2/19_Nested_Types.html#gitbook_29":["1","10","11","2","ac","blackjackcard","blackjackcard(rank","blackjackcard(二十一点),用来模拟blackjackcard中的扑克牌点数。blackjackcard结构体包含2个嵌套定义的枚举类型suit","blackjackcard.suit.hearts.toraw","blackjackcard是一个没有自定义构造函数的结构体,在memberwis","blackjackcard结构体自身有两个属性—rank与suit,也同样定义了一个计算属性description,description属性用rank和suit的中内容来构建对这张扑克牌名字和数值的描述,并用可选类型second","blackjackcard规则中,ace牌可以表示1或者11,ace牌的这一特征用一个嵌套在枚举型rank的结构体valu","case","charact","club","default","descript","diamond","eight","enum","first","five","four","heart","heartssymbol","initi","int","jack","king","nil","nine","option","output","println(\"theaceofspad","queen","rank","rank.values.first","rank.values.second","rank和suit嵌套在blackjackcard中,但仍可被引用,所以在初始化实例时能够通过枚举类型中的成员名称单独引用。在上面的例子中description属性能正确得输出对ace牌有1和11","rank在自己内部定义了一个嵌套结构体values。这个结构体包含两个变量,只有ace有两个数值,其余牌都只有一个数值。结构体valu","rank定义了一个计算属性values,这个计算属性会根据牌的面值,用适当的数值去初始化values实例,并赋值给values。对于j,q,k,ace会使用特殊数值,对于数字面值的牌使用int","rank用来描述扑克牌从ace~10,j,q,k,13张牌,并分别用一个int类型的值表示牌的面值。(这个int类型的值不适用于ace,j,q,k","return","second","self","self.toraw","seven","six","spade","string","struct","structur","suit","suit.toraw","suit用来描述扑克牌的四种花色,并分别用一个charact","swift","switch","ten","theaceofspad","theaceofspades.descript","three","two","types中知道结构体有默认的成员构造函数,所以你可以用默认的initializer去初始化新的常量theaceofspad","undefinedundefin","valu","values(first","var"],"chapter2/22_Generics.html#gitbook_32":["0..somecontainer.count","0.1","0.25","107","2","3","4","4个string","9.3","abov","action","ad","add","adopt","alia","allitemsmatch","allitemsmatch(stackofstr","allitemsmatch的泛型函数,用来检查是否两个container单例包含具有相同顺序的相同items。如果匹配到所有的items,那么返回一个为true的boolean","allitemsmatch首先检查两个容器是否拥有同样数目的items,如果他们的items数目不同,没有办法进行匹配,函数就会fals","allow","alwai","andrea","anothercontain","anothercontainer.count","anothercontainer[i","anothercontainer中的item","anothercontainer是一个c2","anotherint","anotherstr","app","append(item","append方法添加一个新item","approach","arrai","arrayofstr","array性质的items存储值。stack提供两个方法:push和pop,从栈中压进一个值和移除一个值。这些方法标记为可变的,因为他们需要修改(或转换)结构体的item","attempt","automat","avail","b","behavior","bodi","bool","bool)默认都是hash","both","c1","c1.itemtyp","c1必须遵循contain","c1的itemtype同样是c2的itemtyp","c1的itemtype必须遵循equat","c2","c2.itemtyp","c2必须遵循contain","call","cat","check","class","code","collect","compile-tim","concept","conform","constraints][8","contain","container协议声明了一个itemtype的关联类型,写作typealia","container协议的例子,定义了一个itemtyp","container协议的泛型stack","container协议的类型必须指定存储在其里面的值类型,必须保证只有正确类型的items可以加进容器里,必须明确可以通过其下标返回item","container协议需要一个方法指定容器里的元素将会保留,而不需要知道特定容器的类型。container协议需要指定任何通过append","control","count","count属性获取容器里items的数量,并返回一个int","cuatro","defin","dictionary的key上,当然其key类型必须遵循hashable协议(swift标准库中定义的一个特定协议)。所有的swift基本类型(如string,int","do","dog","doubl","doubleindex","each","enumerate(arrai","equal","equat","equatable>(arrai","equatable类型都可以安全的使用在findindex函数中,因为其保证支持等式操作。为了说明这个事实,当你定义一个函数时,你可以写一个equat","equatable,也就意味着“任何t类型都遵循equat","equival","error","exampl","exist","extens","extension][6","extension][7","fals","findindex([\"mik","findindex([3.14159","findindex(arrai","findindex中这个单个类型参数写做:t","findindex函数现在则可以成功的编译过,并且作用于任何遵循equatable的类型,如double或str","findindex,用某个类型t","findstringindex","findstringindex(arrai","findstringindex(str","findstringindex的泛型版本findindex。请注意这个函数仍然返回int","findstringindex的非泛型函数,该函数功能是去查找包含一给定string值的数组。若查找到匹配的字符串,findstringindex函数返回该字符串在数组中的索引值(int),反之则返回nil","first","for-in循环和半闭区间操作(..)来迭代somecontainer中的所有items。对于每个item,函数检查是否somecontainer中的item不等于对应的anothercontainer中的item,如果这两个items不等,则这两个容器不匹配,返回fals","for—that","foundindex","fromthetop","func","function","gener","give","goe","guide,即便你没有实现它。例如:swift的array和dictionary类型都是泛型集。你可以创建一个int数组,也可创建一个string数组,或者甚至于可以是任何其他swift的类型数据数组。同样的,你也可以创建存储任何指定类型的字典(dictionari","hashtabl","hello","here","here’","hierarchi","implement","import","in-out参数交换a和b的值,这两个参数被描述为[in-out类型参数][1","index","indic","inform","inout","inspir","int","intstack","intstack指定了container的实现,适用的itemtype被用作int类型。对于这个contain","intstack类型只能用于int值,不过,其对于定义一个泛型stack","intstack类型实现了container协议的所有三个要求,在intstack","intstack类型的非泛型版本,适用于遵循contain","int索引值下标可以检索到每一个item","int这一行,一切仍旧可以工作,因为它清楚的知道itemtyp","int,将抽象的itemtype类型转换为具体的int","item","items.append(item","items.count","items.removelast","items[i","items。这个需求通过一个类型约束和wher","items的属性,使用空的t","itemtyp","itemtype。th","item是如何存储的或何种类型是允许的。这个协议只指定三个任何遵循contain","item的push方法,该参数必须是t","keytyp","languag","last","left","librari","llama","look","made","malcolm","manag","match","method","model","mutat","name","navig","need","nil","note","now","number","option","origin","out","pair","parakeet","paramet","parameters类型参数命名类型参数泛型类型类型约束类型约束语法类型约束行为关联类型关联类型行为扩展一个存在的类型为一指定关联类型wher","part","placehold","pop","popviewcontrolleranim","pop并移除值"cuatro"","pop方法的返回值,该返回值将是一个t","possibl","print","println(\"al","println(\"not","println(\"someint","println(\"th","protocol","provid","provide(这个协议不会定义itemtype是遵循类型所提供的何种信息的别名)。尽管如此,itemtype别名支持一种方法识别在一个容器里的items类型,以及定义一种使用在append方法和下标中的类型,以便保证任何期望的contain","push","push(item","push)/出栈(pop","pushviewcontroller:anim","remov","report","return","same","see","self.push(item","someclass","somecontain","somecontainer.count","somecontainer[i","somecontainer中item","somecontainer中的item","somecontainer和anothercontainer。somecontainer参数是类型c1,anothercontainer参数是类型c2。c1和c2","somecontainer和anothercontainer包含相同的item","somecontainer是一个c1","somefunction(somet","somestr","someu","stack","stack(栈)。一个栈是一系列值域的集合,和array(数组)相似,但其是一个比swift的array类型更多限制的集合。一个数组可以允许其里面任何位置的插入/删除操作,而栈,只允许,只允许在集合的末端添加新的项(如同push一个新值进栈)。同样的一个栈也只能从末端移除项(如同pop","stack(inout","swaptwovalues例子中,节点类型t是一种类型参数的示例。类型参数指定并命名为一个节点类型,并且紧随在函数名后面,并用一对尖括号括起来(如)。这个尖括号告诉swift那个t是swaptwovalues函数所定义的一个节点类型。因为t是一个节点,swift不会去查找每一个命名为t","temporarya","terrapin","three","tre","true","type","type-saf","typealia","t分别代表tnt和string","t定义了一个名为“某种类型t”的节点提供给后来用。这种将来类型可以在结构体的定义里任何地方表示为“t”。在这种情况下,t","t来表示)来代替实际类型名(如int、string或double)。节点类型名并不是表示t必须是任何类型,但是其规定a和b必须是同一类型的t,而不管t表示任何类型。只有swaptwovalues函数在每次调用时所传入的实际类型决定了t","t被用作append方法的item参数和下标的返回类型。swift因此可以推断出被用作这个特定容器的itemtype的t","t,有一个需要t必须是someclass子类的类型约束;第二个类型参数u,有一个需要u必须遵循someprotocol","u","uinavigationcontrol","undefinedundefin","uno","uppercamelcas","us","valu","valuetofind","valuetofind”。不是所有的swift中的类型都可以用等式符(==)进行比较。例如,如果你创建一个你自己的类或结构体来表示一个复杂的数据模型,那么swift没法猜到对于这个类或结构体而言“等于”的意思。正因如此,这部分代码不能可能保证工作于每个可能的类型t","var","variabl","view","whenev","where语句作为一个类型参数队列的一部分。一个where语句使你能够要求一个关联类型遵循一个特定的协议,以及(或)那个特定的类型参数和关联类型可以是相同的。你可写一个where语句,通过紧随放置wher","where语句的一部分,写在关键字wher","world"],"chapter2/chapter2.html#gitbook_36":["swift","undefinedundefin"],"chapter3/01_About_the_Language_Reference.html#gitbook_37":["block","getter-claus","getter-sett","getter-setter-block","getter-setter方法​​块可以由一个getter子句后跟一个可选的setter子句构成,用大括号括起来,或者由一个setter子句后跟一个gett","grammar","opt","setter-claus","setter-clause­opt","swift","swift语言相对小点,这是由于在swift代码中几乎无处不在的许多常见的的类型,函数以及运算符都由swift标准库来定义。虽然这些类型,函数和运算符不是swift","undefinedundefin"]},"length":14},"tokenStore":{"root":{"0":{"0":{"0":{"1":{"2":{"3":{"docs":{},".":{"4":{"5":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.01410105757931845},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.018469656992084433}},".":{"0":{"1":{"2":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.01060070671378092}}},"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"2":{"5":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"docs":{}},"docs":{},".":{"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}},"b":{"1":{"0":{"0":{"0":{"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"o":{"2":{"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"x":{"1":{"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}},"c":{"docs":{},".":{"3":{"docs":{},"p":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}},"docs":{}}},"f":{"docs":{},"p":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{},"-":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}}},")":{"docs":{},"。":{"docs":{},"小":{"docs":{},"数":{"docs":{},"点":{"docs":{},"两":{"docs":{},"边":{"docs":{},"必":{"docs":{},"须":{"docs":{},"有":{"docs":{},"至":{"docs":{},"少":{"docs":{},"一":{"docs":{},"个":{"docs":{},"十":{"docs":{},"进":{"docs":{},"制":{"docs":{},"数":{"docs":{},"字":{"docs":{},"(":{"docs":{},"或":{"docs":{},"者":{"docs":{},"是":{"docs":{},"十":{"docs":{},"六":{"docs":{},"进":{"docs":{},"制":{"docs":{},"的":{"docs":{},"数":{"docs":{},"字":{"docs":{},")":{"docs":{},"。":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"还":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"指":{"docs":{},"数":{"docs":{},",":{"docs":{},"在":{"docs":{},"十":{"docs":{},"进":{"docs":{},"制":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"数":{"docs":{},"中":{"docs":{},"通":{"docs":{},"过":{"docs":{},"大":{"docs":{},"写":{"docs":{},"或":{"docs":{},"者":{"docs":{},"小":{"docs":{},"写":{"docs":{},"的":{"docs":{},"e":{"docs":{},"来":{"docs":{},"指":{"docs":{},"定":{"docs":{},",":{"docs":{},"在":{"docs":{},"十":{"docs":{},"六":{"docs":{},"进":{"docs":{},"制":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"数":{"docs":{},"中":{"docs":{},"通":{"docs":{},"过":{"docs":{},"大":{"docs":{},"写":{"docs":{},"或":{"docs":{},"者":{"docs":{},"小":{"docs":{},"写":{"docs":{},"的":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"$":{"1":{"docs":{},",":{"docs":{},"$":{"2":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"docs":{}}}},"docs":{}}},",":{"docs":{},"这":{"docs":{},"时":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"会":{"docs":{},"将":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"输":{"docs":{},"出":{"docs":{},",":{"docs":{},"而":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}}}}}}}}}}},"1":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123}}},"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.011029411764705883}}},"7":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.023746701846965697},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}},"^":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{},"-":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}},"中":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"为":{"1":{"6":{"docs":{},",":{"docs":{},"则":{"docs":{},"返":{"docs":{},"回":{"6":{"docs":{},",":{"5":{"8":{"docs":{},"返":{"docs":{},"回":{"8":{"docs":{},",":{"5":{"1":{"0":{"docs":{},"返":{"docs":{},"回":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"docs":{}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}},"docs":{}},"docs":{}}},"docs":{}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"1":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.011029411764705883}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018}}},"2":{"5":{"docs":{},".":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}},"8":{"0":{"5":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},",":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"十":{"docs":{},"六":{"docs":{},"进":{"docs":{},"制":{"1":{"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483}},".":{"1":{"8":{"7":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"4":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}},"docs":{}},"5":{"9":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}},"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}}},"6":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}},",":{"5":{"8":{"docs":{},",":{"5":{"1":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"变":{"docs":{},"成":{"docs":{},"了":{"1":{"docs":{},",":{"5":{"8":{"docs":{},"变":{"docs":{},"成":{"docs":{},"了":{"5":{"docs":{},",":{"5":{"1":{"0":{"docs":{},"变":{"docs":{},"成":{"docs":{},"了":{"5":{"1":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}},"docs":{}},"docs":{}}},"docs":{}}}}},"7":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0176678445229682}}},"8":{"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}},"docs":{}},"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.009400705052878966},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.01060070671378092},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.01838235294117647},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.010554089709762533},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018}},".":{"2":{"1":{"8":{"7":{"5":{"docs":{},"e":{"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}},"e":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{},"-":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}}},"docs":{}},"docs":{}},"_":{"0":{"0":{"0":{"docs":{},"_":{"0":{"0":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}},".":{"0":{"0":{"0":{"docs":{},"_":{"0":{"0":{"0":{"docs":{},"_":{"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"2":{"0":{"1":{"4":{"docs":{"index.html#gitbook_7":{"ref":"index.html#gitbook_7","tf":0.1111111111111111}}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.007352941176470588}}},"4":{"0":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}},"docs":{}},"5":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.009400705052878966},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.014705882352941176},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}},".":{"5":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.009191176470588236}}},"docs":{}},"^":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{},"-":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}},"_":{"0":{"0":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}},"docs":{}}},"3":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"2":{"docs":{},"位":{"docs":{},"平":{"docs":{},"台":{"docs":{},"上":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"3":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}}}}}}},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"3":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"3":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.011029411764705883}}},"9":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.011750881316098707},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.01060070671378092},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.007352941176470588},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.008968609865470852}},".":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}},"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.01060070671378092}},",":{"0":{"docs":{},".":{"1":{"docs":{},"和":{"docs":{},"-":{"2":{"7":{"3":{"docs":{},".":{"1":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"5":{"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}},"6":{"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}},"7":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"可":{"docs":{},"以":{"docs":{},"直":{"docs":{},"接":{"docs":{},"和":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"0":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}},"没":{"docs":{},"有":{"docs":{},"显":{"docs":{},"式":{"docs":{},"声":{"docs":{},"明":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"而":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"中":{"docs":{},"出":{"docs":{},"现":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"会":{"docs":{},"被":{"docs":{},"推":{"docs":{},"测":{"docs":{},"为":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"4":{"0":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}},"和":{"3":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{},"-":{"2":{"3":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}},"并":{"docs":{},"且":{"docs":{},"没":{"docs":{},"有":{"docs":{},"标":{"docs":{},"明":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}},"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},".":{"7":{"5":{"docs":{},"会":{"docs":{},"变":{"docs":{},"成":{"4":{"docs":{},",":{"docs":{},"-":{"3":{"docs":{},".":{"9":{"docs":{},"会":{"docs":{},"变":{"docs":{},"成":{"3":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}}}},"docs":{}}},"docs":{}}}},"docs":{}}}}},"docs":{}},"docs":{}},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}},"5":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"1":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"docs":{}},"5":{"3":{"5":{"7":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}},"docs":{}},"docs":{}},"docs":{}},"6":{"3":{"7":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}},"docs":{}},"docs":{}},"docs":{}},"8":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"9":{"7":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.005875440658049354},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}},".":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}}},"6":{"0":{"docs":{},".":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}},"4":{"docs":{},"位":{"docs":{},"平":{"docs":{},"台":{"docs":{},"上":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}}}}}}},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.011029411764705883}}},"9":{"1":{"0":{"5":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"7":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},".":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}}},"5":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.0079155672823219}},".":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}},"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"8":{"7":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}},":":{"0":{"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"、":{"1":{"6":{"docs":{},"、":{"3":{"2":{"docs":{},"和":{"6":{"4":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"位":{"docs":{},"无":{"docs":{},"符":{"docs":{},"号":{"docs":{},"整":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},",":{"3":{"2":{"docs":{},"位":{"docs":{},"有":{"docs":{},"符":{"docs":{},"号":{"docs":{},"整":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"3":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}},"9":{"4":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}},".":{"3":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}},"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}}},"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"index.html#gitbook_7":{"ref":"index.html#gitbook_7","tf":0.1111111111111111},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.01060070671378092}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483}}}}}}},"w":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}}},"m":{"docs":{},"b":{"docs":{},"d":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}}}}},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"t":{"docs":{},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}},"f":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"n":{"docs":{},"e":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}},"o":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"o":{"docs":{},"k":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"p":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"index.html#gitbook_7":{"ref":"index.html#gitbook_7","tf":0.1111111111111111}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.008968609865470852}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"变":{"docs":{},"量":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},",":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"会":{"docs":{},"把":{"docs":{},"它":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"当":{"docs":{},"做":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"e":{"docs":{},"(":{"docs":{},"这":{"docs":{},"个":{"docs":{},"协":{"docs":{},"议":{"docs":{},"不":{"docs":{},"会":{"docs":{},"定":{"docs":{},"义":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"是":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"类":{"docs":{},"型":{"docs":{},"所":{"docs":{},"提":{"docs":{},"供":{"docs":{},"的":{"docs":{},"何":{"docs":{},"种":{"docs":{},"信":{"docs":{},"息":{"docs":{},"的":{"docs":{},"别":{"docs":{},"名":{"docs":{},")":{"docs":{},"。":{"docs":{},"尽":{"docs":{},"管":{"docs":{},"如":{"docs":{},"此":{"docs":{},",":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"别":{"docs":{},"名":{"docs":{},"支":{"docs":{},"持":{"docs":{},"一":{"docs":{},"种":{"docs":{},"方":{"docs":{},"法":{"docs":{},"识":{"docs":{},"别":{"docs":{},"在":{"docs":{},"一":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"种":{"docs":{},"使":{"docs":{},"用":{"docs":{},"在":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"和":{"docs":{},"下":{"docs":{},"标":{"docs":{},"中":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"以":{"docs":{},"便":{"docs":{},"保":{"docs":{},"证":{"docs":{},"任":{"docs":{},"何":{"docs":{},"期":{"docs":{},"望":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.014134275618374558},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415},"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.07142857142857142},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}},"l":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}},"\\":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"h":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}},"u":{"docs":{},"n":{"docs":{},"u":{"docs":{},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"y":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"输":{"docs":{},"出":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"用":{"docs":{},"来":{"docs":{},"输":{"docs":{},"出":{"docs":{},"的":{"docs":{},"全":{"docs":{},"局":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"输":{"docs":{},"出":{"docs":{},"的":{"docs":{},"内":{"docs":{},"容":{"docs":{},"会":{"docs":{},"在":{"docs":{},"最":{"docs":{},"后":{"docs":{},"带":{"docs":{},"换":{"docs":{},"行":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"用":{"docs":{},"x":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},",":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"将":{"docs":{},"会":{"docs":{},"输":{"docs":{},"出":{"docs":{},"内":{"docs":{},"容":{"docs":{},"到":{"docs":{},"“":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"”":{"docs":{},"面":{"docs":{},"板":{"docs":{},"上":{"docs":{},"。":{"docs":{},"(":{"docs":{},"另":{"docs":{},"一":{"docs":{},"种":{"docs":{},"函":{"docs":{},"数":{"docs":{},"叫":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"\"":{"docs":{},"\\":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}}}},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"命":{"docs":{},"名":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"约":{"docs":{},"束":{"docs":{},"类":{"docs":{},"型":{"docs":{},"约":{"docs":{},"束":{"docs":{},"语":{"docs":{},"法":{"docs":{},"类":{"docs":{},"型":{"docs":{},"约":{"docs":{},"束":{"docs":{},"行":{"docs":{},"为":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"行":{"docs":{},"为":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"一":{"docs":{},"个":{"docs":{},"存":{"docs":{},"在":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"一":{"docs":{},"指":{"docs":{},"定":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":5}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}},"e":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.047619047619047616}}}}}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.014134275618374558}},"e":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.01046337817638266}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}},"并":{"docs":{},"移":{"docs":{},"除":{"docs":{},"值":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"该":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"将":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}},"s":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}}}}}}},")":{"docs":{},"/":{"docs":{},"出":{"docs":{},"栈":{"docs":{},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}}}}}},"s":{"1":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.03430079155672823}}},"2":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.03430079155672823}},")":{"docs":{},",":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}}}},"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"index.html#gitbook_7":{"ref":"index.html#gitbook_7","tf":10.444444444444445},"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":10.404761904761905},"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":10.00587544065805},"chapter1/chapter1.html#gitbook_10":{"ref":"chapter1/chapter1.html#gitbook_10","tf":10.75},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.10247349823321555},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.029411764705882353},"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.03430079155672823},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174},"chapter2/chapter2.html#gitbook_36":{"ref":"chapter2/chapter2.html#gitbook_36","tf":10.666666666666666},"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.08333333333333333}},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"这":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"详":{"docs":{},"情":{"docs":{},"参":{"docs":{},"见":{"docs":{},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"和":{"docs":{},"类":{"docs":{},"型":{"docs":{},"推":{"docs":{},"断":{"docs":{},"(":{"docs":{},"待":{"docs":{},"添":{"docs":{},"加":{"docs":{},"链":{"docs":{},"接":{"docs":{},")":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"没":{"docs":{},"有":{"docs":{},"给":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"插":{"docs":{},"值":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}},"统":{"docs":{},"一":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"语":{"docs":{},"法":{"docs":{},"足":{"docs":{},"够":{"docs":{},"灵":{"docs":{},"活":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"任":{"docs":{},"何":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"包":{"docs":{},"括":{"docs":{},"从":{"docs":{},"最":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"没":{"docs":{},"有":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"字":{"docs":{},"的":{"docs":{},"c":{"docs":{},"风":{"docs":{},"格":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"到":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"的":{"docs":{},"带":{"docs":{},"局":{"docs":{},"部":{"docs":{},"和":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"的":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"自":{"docs":{},"动":{"docs":{},"引":{"docs":{},"用":{"docs":{},"计":{"docs":{},"数":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},")":{"docs":{},"这":{"docs":{},"一":{"docs":{},"机":{"docs":{},"制":{"docs":{},"来":{"docs":{},"跟":{"docs":{},"踪":{"docs":{},"和":{"docs":{},"管":{"docs":{},"理":{"docs":{},"你":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"程":{"docs":{},"序":{"docs":{},"的":{"docs":{},"内":{"docs":{},"存":{"docs":{},"。":{"docs":{},"通":{"docs":{},"常":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"的":{"docs":{},"内":{"docs":{},"存":{"docs":{},"管":{"docs":{},"理":{"docs":{},"机":{"docs":{},"制":{"docs":{},"会":{"docs":{},"一":{"docs":{},"直":{"docs":{},"起":{"docs":{},"着":{"docs":{},"作":{"docs":{},"用":{"docs":{},",":{"docs":{},"你":{"docs":{},"无":{"docs":{},"须":{"docs":{},"自":{"docs":{},"己":{"docs":{},"来":{"docs":{},"考":{"docs":{},"虑":{"docs":{},"内":{"docs":{},"存":{"docs":{},"的":{"docs":{},"管":{"docs":{},"理":{"docs":{},"。":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_26":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_26","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"’":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"允":{"docs":{},"许":{"docs":{},"你":{"docs":{},"定":{"docs":{},"义":{"docs":{},"你":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"这":{"docs":{},"些":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"类":{"docs":{},"、":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"和":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"如":{"docs":{},"同":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},"类":{"docs":{},"型":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{},"另":{"docs":{},"外":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"值":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"自":{"docs":{},"己":{"docs":{},"写":{"docs":{},"字":{"docs":{},"典":{"docs":{},",":{"docs":{},"你":{"docs":{},"或":{"docs":{},"许":{"docs":{},"会":{"docs":{},"定":{"docs":{},"义":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"和":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"该":{"docs":{},"协":{"docs":{},"议":{"docs":{},"要":{"docs":{},"求":{"docs":{},"任":{"docs":{},"何":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"实":{"docs":{},"现":{"docs":{},"等":{"docs":{},"式":{"docs":{},"符":{"docs":{},"(":{"docs":{},"=":{"docs":{},"=":{"docs":{},")":{"docs":{},"和":{"docs":{},"不":{"docs":{},"等":{"docs":{},"符":{"docs":{},"(":{"docs":{},"!":{"docs":{},"=":{"docs":{},")":{"docs":{},"对":{"docs":{},"任":{"docs":{},"何":{"docs":{},"两":{"docs":{},"个":{"docs":{},"该":{"docs":{},"类":{"docs":{},"型":{"docs":{},"进":{"docs":{},"行":{"docs":{},"比":{"docs":{},"较":{"docs":{},"。":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"标":{"docs":{},"准":{"docs":{},"类":{"docs":{},"型":{"docs":{},"自":{"docs":{},"动":{"docs":{},"支":{"docs":{},"持":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"已":{"docs":{},"经":{"docs":{},"提":{"docs":{},"供":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"属":{"docs":{},"性":{"docs":{},"和":{"docs":{},"通":{"docs":{},"过":{"docs":{},"下":{"docs":{},"标":{"docs":{},"来":{"docs":{},"查":{"docs":{},"找":{"docs":{},"一":{"docs":{},"个":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},"。":{"docs":{},"这":{"docs":{},"三":{"docs":{},"个":{"docs":{},"功":{"docs":{},"能":{"docs":{},"都":{"docs":{},"达":{"docs":{},"到":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"要":{"docs":{},"求":{"docs":{},"。":{"docs":{},"也":{"docs":{},"就":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"去":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"通":{"docs":{},"过":{"docs":{},"简":{"docs":{},"单":{"docs":{},"声":{"docs":{},"明":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"适":{"docs":{},"用":{"docs":{},"于":{"docs":{},"该":{"docs":{},"协":{"docs":{},"议":{"docs":{},"而":{"docs":{},"已":{"docs":{},"。":{"docs":{},"如":{"docs":{},"何":{"docs":{},"实":{"docs":{},"践":{"docs":{},"这":{"docs":{},"样":{"docs":{},"一":{"docs":{},"个":{"docs":{},"空":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"在":{"docs":{},"[":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"对":{"docs":{},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"做":{"docs":{},"了":{"docs":{},"些":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"在":{"docs":{},"[":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"]":{"docs":{},"[":{"5":{"docs":{},"]":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},"中":{"docs":{},",":{"docs":{},"字":{"docs":{},"典":{"docs":{},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"有":{"docs":{},"一":{"docs":{},"种":{"docs":{},"方":{"docs":{},"法":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"其":{"docs":{},"是":{"docs":{},"唯":{"docs":{},"一":{"docs":{},"的":{"docs":{},"表":{"docs":{},"示":{"docs":{},"。":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"之":{"docs":{},"所":{"docs":{},"以":{"docs":{},"需":{"docs":{},"要":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"是":{"docs":{},"为":{"docs":{},"了":{"docs":{},"以":{"docs":{},"便":{"docs":{},"于":{"docs":{},"其":{"docs":{},"检":{"docs":{},"查":{"docs":{},"其":{"docs":{},"是":{"docs":{},"否":{"docs":{},"包":{"docs":{},"含":{"docs":{},"某":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"如":{"docs":{},"无":{"docs":{},"此":{"docs":{},"需":{"docs":{},"求":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"即":{"docs":{},"不":{"docs":{},"会":{"docs":{},"告":{"docs":{},"诉":{"docs":{},"是":{"docs":{},"否":{"docs":{},"插":{"docs":{},"入":{"docs":{},"或":{"docs":{},"者":{"docs":{},"替":{"docs":{},"换":{"docs":{},"了":{"docs":{},"某":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"也":{"docs":{},"不":{"docs":{},"能":{"docs":{},"查":{"docs":{},"找":{"docs":{},"到":{"docs":{},"已":{"docs":{},"经":{"docs":{},"存":{"docs":{},"储":{"docs":{},"在":{"docs":{},"字":{"docs":{},"典":{"docs":{},"里":{"docs":{},"面":{"docs":{},"的":{"docs":{},"给":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"考":{"docs":{},",":{"docs":{},"你":{"docs":{},"不":{"docs":{},"用":{"docs":{},"在":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"定":{"docs":{},"义":{"docs":{},"部":{"docs":{},"分":{"docs":{},"声":{"docs":{},"明":{"docs":{},"一":{"docs":{},"个":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"。":{"docs":{},"由":{"docs":{},"于":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"要":{"docs":{},"求":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"通":{"docs":{},"过":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"查":{"docs":{},"找":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"参":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"和":{"docs":{},"下":{"docs":{},"标":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"合":{"docs":{},"适":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"要":{"docs":{},"强":{"docs":{},"大":{"docs":{},"特":{"docs":{},"征":{"docs":{},"中":{"docs":{},"的":{"docs":{},"其":{"docs":{},"中":{"docs":{},"一":{"docs":{},"个":{"docs":{},",":{"docs":{},"许":{"docs":{},"多":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"代":{"docs":{},"码":{"docs":{},"构":{"docs":{},"建":{"docs":{},"出":{"docs":{},"来":{"docs":{},"的":{"docs":{},"。":{"docs":{},"事":{"docs":{},"实":{"docs":{},"上":{"docs":{},",":{"docs":{},"你":{"docs":{},"已":{"docs":{},"经":{"docs":{},"使":{"docs":{},"用":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"贯":{"docs":{},"穿":{"docs":{},"着":{"docs":{},"整":{"docs":{},"个":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"言":{"docs":{},"相":{"docs":{},"对":{"docs":{},"小":{"docs":{},"点":{"docs":{},",":{"docs":{},"这":{"docs":{},"是":{"docs":{},"由":{"docs":{},"于":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"代":{"docs":{},"码":{"docs":{},"中":{"docs":{},"几":{"docs":{},"乎":{"docs":{},"无":{"docs":{},"处":{"docs":{},"不":{"docs":{},"在":{"docs":{},"的":{"docs":{},"许":{"docs":{},"多":{"docs":{},"常":{"docs":{},"见":{"docs":{},"的":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"以":{"docs":{},"及":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"都":{"docs":{},"由":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"来":{"docs":{},"定":{"docs":{},"义":{"docs":{},"。":{"docs":{},"虽":{"docs":{},"然":{"docs":{},"这":{"docs":{},"些":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"和":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"不":{"docs":{},"是":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.005875440658049354},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}},"中":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"的":{"docs":{},"子":{"docs":{},"句":{"docs":{},"之":{"docs":{},"后":{"docs":{},",":{"docs":{},"程":{"docs":{},"序":{"docs":{},"会":{"docs":{},"退":{"docs":{},"出":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"并":{"docs":{},"不":{"docs":{},"会":{"docs":{},"继":{"docs":{},"续":{"docs":{},"向":{"docs":{},"下":{"docs":{},"运":{"docs":{},"行":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"每":{"docs":{},"个":{"docs":{},"子":{"docs":{},"句":{"docs":{},"结":{"docs":{},"尾":{"docs":{},"写":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}}},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"可":{"docs":{},"以":{"docs":{},"交":{"docs":{},"换":{"docs":{},"b":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"到":{"docs":{},"a":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"交":{"docs":{},"换":{"docs":{},"a":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"到":{"docs":{},"b":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"调":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"非":{"docs":{},"常":{"docs":{},"有":{"docs":{},"用":{"docs":{},"的":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"它":{"docs":{},"只":{"docs":{},"能":{"docs":{},"交":{"docs":{},"换":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"值":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"想":{"docs":{},"要":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"或":{"docs":{},"者":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}},"函":{"docs":{},"数":{"docs":{},"主":{"docs":{},"题":{"docs":{},"都":{"docs":{},"是":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},",":{"docs":{},"唯":{"docs":{},"一":{"docs":{},"不":{"docs":{},"同":{"docs":{},"之":{"docs":{},"处":{"docs":{},"就":{"docs":{},"在":{"docs":{},"于":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"不":{"docs":{},"同":{"docs":{},",":{"docs":{},"分":{"docs":{},"别":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}},"<":{"docs":{},"t":{"docs":{},">":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}}}}}},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{},"是":{"docs":{},"一":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"的":{"docs":{},"示":{"docs":{},"例":{"docs":{},"。":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"指":{"docs":{},"定":{"docs":{},"并":{"docs":{},"命":{"docs":{},"名":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"紧":{"docs":{},"随":{"docs":{},"在":{"docs":{},"函":{"docs":{},"数":{"docs":{},"名":{"docs":{},"后":{"docs":{},"面":{"docs":{},",":{"docs":{},"并":{"docs":{},"用":{"docs":{},"一":{"docs":{},"对":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"括":{"docs":{},"起":{"docs":{},"来":{"docs":{},"(":{"docs":{},"如":{"docs":{},"<":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{},")":{"docs":{},",":{"docs":{},"或":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"或":{"docs":{},"用":{"docs":{},"作":{"docs":{},"函":{"docs":{},"数":{"docs":{},"主":{"docs":{},"体":{"docs":{},"中":{"docs":{},"的":{"docs":{},"注":{"docs":{},"释":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"被":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"所":{"docs":{},"代":{"docs":{},"表":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"不":{"docs":{},"管":{"docs":{},"函":{"docs":{},"数":{"docs":{},"任":{"docs":{},"何":{"docs":{},"时":{"docs":{},"候":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"都":{"docs":{},"会":{"docs":{},"被":{"docs":{},"实":{"docs":{},"际":{"docs":{},"类":{"docs":{},"型":{"docs":{},"所":{"docs":{},"替":{"docs":{},"换":{"docs":{},"(":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"当":{"docs":{},"函":{"docs":{},"数":{"docs":{},"第":{"docs":{},"一":{"docs":{},"次":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"t":{"docs":{},"被":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"替":{"docs":{},"换":{"docs":{},",":{"docs":{},"第":{"docs":{},"二":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"被":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"主":{"docs":{},"体":{"docs":{},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"是":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"而":{"docs":{},"且":{"docs":{},",":{"docs":{},"只":{"docs":{},"在":{"docs":{},"第":{"docs":{},"一":{"docs":{},"行":{"docs":{},"稍":{"docs":{},"微":{"docs":{},"有":{"docs":{},"那":{"docs":{},"么":{"docs":{},"一":{"docs":{},"点":{"docs":{},"点":{"docs":{},"不":{"docs":{},"同":{"docs":{},"于":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"除":{"docs":{},"了":{"docs":{},"只":{"docs":{},"要":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"两":{"docs":{},"个":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},"值":{"docs":{},"是":{"docs":{},"同":{"docs":{},"一":{"docs":{},"类":{"docs":{},"型":{"docs":{},"外":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"作":{"docs":{},"为":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{},"每":{"docs":{},"次":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"或":{"docs":{},"一":{"docs":{},"个":{"docs":{},"存":{"docs":{},"储":{"docs":{},"单":{"docs":{},"一":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"集":{"docs":{},",":{"docs":{},"如":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},")":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"一":{"docs":{},"单":{"docs":{},"个":{"docs":{},"字":{"docs":{},"母":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}},"m":{"docs":{},"e":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}}}}}}}}}},"。":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"展":{"docs":{},"示":{"docs":{},"的":{"docs":{},"是":{"docs":{},"用":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"时":{"docs":{},",":{"docs":{},"在":{"docs":{},"圆":{"docs":{},"括":{"docs":{},"号":{"docs":{},"中":{"docs":{},"传":{"docs":{},"给":{"docs":{},"它":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"参":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"包":{"docs":{},"含":{"docs":{},"在":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"体":{"docs":{},"中":{"docs":{},",":{"docs":{},"先":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"名":{"docs":{},"为":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"同":{"docs":{},"时":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"了":{"docs":{},"给":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"问":{"docs":{},"候":{"docs":{},"消":{"docs":{},"息":{"docs":{},"。":{"docs":{},"然":{"docs":{},"后":{"docs":{},"用":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"把":{"docs":{},"这":{"docs":{},"个":{"docs":{},"问":{"docs":{},"候":{"docs":{},"返":{"docs":{},"回":{"docs":{},"出":{"docs":{},"去":{"docs":{},"。":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123}}}}},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":1.6776960784313724}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.025735294117647058}},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.056910569105691054}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123}}}}}}}}}}}}},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"l":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}}}}}}},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"区":{"docs":{},"别":{"docs":{},"实":{"docs":{},"例":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"像":{"docs":{},"传":{"docs":{},"入":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},"给":{"docs":{},"类":{"docs":{},"传":{"docs":{},"入":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"。":{"docs":{},"每":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"都":{"docs":{},"需":{"docs":{},"要":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"—":{"docs":{},"—":{"docs":{},"无":{"docs":{},"论":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"声":{"docs":{},"明":{"docs":{},"(":{"docs":{},"就":{"docs":{},"像":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},"还":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"(":{"docs":{},"就":{"docs":{},"像":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"6":{"docs":{},":":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.08333333333333333}},"e":{"docs":{},"­":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.08333333333333333}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.007050528789659225}},".":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}},"类":{"docs":{},"缺":{"docs":{},"少":{"docs":{},"了":{"docs":{},"一":{"docs":{},"些":{"docs":{},"重":{"docs":{},"要":{"docs":{},"的":{"docs":{},"东":{"docs":{},"西":{"docs":{},":":{"docs":{},"一":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"来":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"类":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.012925969447708578}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.01527614571092832}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"e":{"docs":{},"时":{"docs":{},"候":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"用":{"docs":{},"来":{"docs":{},"标":{"docs":{},"记":{"docs":{},"一":{"docs":{},"个":{"docs":{},"会":{"docs":{},"修":{"docs":{},"改":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"。":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}},"z":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"(":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266}},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"中":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"。":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"c":{"1":{"docs":{},",":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"c":{"2":{"docs":{},"。":{"docs":{},"c":{"1":{"docs":{},"和":{"docs":{},"c":{"2":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"docs":{}}}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"1":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.007473841554559043}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},">":{"docs":{},"(":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}},"u":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}},"r":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":3.3597185576077395}},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.021108179419525065}}}}}}}},"u":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018}}}},"r":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.011750881316098707}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}},"r":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.007473841554559043}},"(":{"docs":{},"栈":{"docs":{},")":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"栈":{"docs":{},"是":{"docs":{},"一":{"docs":{},"系":{"docs":{},"列":{"docs":{},"值":{"docs":{},"域":{"docs":{},"的":{"docs":{},"集":{"docs":{},"合":{"docs":{},",":{"docs":{},"和":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"(":{"docs":{},"数":{"docs":{},"组":{"docs":{},")":{"docs":{},"相":{"docs":{},"似":{"docs":{},",":{"docs":{},"但":{"docs":{},"其":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"比":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"的":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"更":{"docs":{},"多":{"docs":{},"限":{"docs":{},"制":{"docs":{},"的":{"docs":{},"集":{"docs":{},"合":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"数":{"docs":{},"组":{"docs":{},"可":{"docs":{},"以":{"docs":{},"允":{"docs":{},"许":{"docs":{},"其":{"docs":{},"里":{"docs":{},"面":{"docs":{},"任":{"docs":{},"何":{"docs":{},"位":{"docs":{},"置":{"docs":{},"的":{"docs":{},"插":{"docs":{},"入":{"docs":{},"/":{"docs":{},"删":{"docs":{},"除":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"而":{"docs":{},"栈":{"docs":{},",":{"docs":{},"只":{"docs":{},"允":{"docs":{},"许":{"docs":{},",":{"docs":{},"只":{"docs":{},"允":{"docs":{},"许":{"docs":{},"在":{"docs":{},"集":{"docs":{},"合":{"docs":{},"的":{"docs":{},"末":{"docs":{},"端":{"docs":{},"添":{"docs":{},"加":{"docs":{},"新":{"docs":{},"的":{"docs":{},"项":{"docs":{},"(":{"docs":{},"如":{"docs":{},"同":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"值":{"docs":{},"进":{"docs":{},"栈":{"docs":{},")":{"docs":{},"。":{"docs":{},"同":{"docs":{},"样":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"栈":{"docs":{},"也":{"docs":{},"只":{"docs":{},"能":{"docs":{},"从":{"docs":{},"末":{"docs":{},"端":{"docs":{},"移":{"docs":{},"除":{"docs":{},"项":{"docs":{},"(":{"docs":{},"如":{"docs":{},"同":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"d":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}}}}}}},"如":{"docs":{},"何":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}},"单":{"docs":{},"例":{"docs":{},"来":{"docs":{},"存":{"docs":{},"储":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"压":{"docs":{},"了":{"docs":{},"三":{"docs":{},"个":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"进":{"docs":{},"栈":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"也":{"docs":{},"创":{"docs":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"单":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"包":{"docs":{},"含":{"docs":{},"三":{"docs":{},"个":{"docs":{},"同":{"docs":{},"栈":{"docs":{},"里":{"docs":{},"一":{"docs":{},"样":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"。":{"docs":{},"即":{"docs":{},"便":{"docs":{},"栈":{"docs":{},"和":{"docs":{},"数":{"docs":{},"组":{"docs":{},"否":{"docs":{},"是":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"但":{"docs":{},"他":{"docs":{},"们":{"docs":{},"都":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"而":{"docs":{},"且":{"docs":{},"他":{"docs":{},"们":{"docs":{},"都":{"docs":{},"包":{"docs":{},"含":{"docs":{},"同":{"docs":{},"样":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"值":{"docs":{},"。":{"docs":{},"你":{"docs":{},"因":{"docs":{},"此":{"docs":{},"可":{"docs":{},"以":{"docs":{},"调":{"docs":{},"用":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"用":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"作":{"docs":{},"为":{"docs":{},"它":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"函":{"docs":{},"数":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},"显":{"docs":{},"示":{"docs":{},"了":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"同":{"docs":{},"创":{"docs":{},"建":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"中":{"docs":{},"其":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"任":{"docs":{},"何":{"docs":{},"有":{"docs":{},"效":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"栈":{"docs":{},",":{"docs":{},"这":{"docs":{},"种":{"docs":{},"方":{"docs":{},"式":{"docs":{},"如":{"docs":{},"同":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"基":{"docs":{},"本":{"docs":{},"上":{"docs":{},"和":{"docs":{},"非":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"t":{"docs":{},"代":{"docs":{},"替":{"docs":{},"了":{"docs":{},"实":{"docs":{},"际":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"包":{"docs":{},"含":{"docs":{},"在":{"docs":{},"一":{"docs":{},"对":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"里":{"docs":{},"(":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"和":{"docs":{},"下":{"docs":{},"标":{"docs":{},"保":{"docs":{},"证":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"所":{"docs":{},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"适":{"docs":{},"用":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"这":{"docs":{},"个":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"后":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"将":{"docs":{},"任":{"docs":{},"何":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"当":{"docs":{},"作":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.007352941176470588}}},"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0282021151586369},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.01060070671378092},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":1.705269607843137},"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.09523809523809523},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.0712401055408971},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.01046337817638266}},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}},"”":{"docs":{},"的":{"docs":{},"意":{"docs":{},"思":{"docs":{},"是":{"docs":{},"“":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"任":{"docs":{},"意":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}},",":{"docs":{},"你":{"docs":{},"绝":{"docs":{},"对":{"docs":{},"不":{"docs":{},"可":{"docs":{},"能":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"传":{"docs":{},"进":{"docs":{},"去":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}},"名":{"docs":{},"字":{"docs":{},"为":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"会":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"你":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"传":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}}}},"c":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}},"h":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.06504065040650407}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"对":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"和":{"docs":{},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"返":{"docs":{},"回":{"docs":{},"“":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"”":{"docs":{},",":{"docs":{},"对":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"返":{"docs":{},"回":{"docs":{},"“":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"描":{"docs":{},"述":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"四":{"docs":{},"种":{"docs":{},"花":{"docs":{},"色":{"docs":{},",":{"docs":{},"并":{"docs":{},"分":{"docs":{},"别":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123}},"o":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"(":{"4":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}},"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}}}}}}},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}},"u":{"0":{"0":{"0":{"1":{"docs":{},"f":{"4":{"9":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"2":{"6":{"6":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"index.html#gitbook_7":{"ref":"index.html#gitbook_7","tf":0.1111111111111111},"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter1/chapter1.html#gitbook_10":{"ref":"chapter1/chapter1.html#gitbook_10","tf":0.25},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/09_Classes_and_Structures.html#gitbook_19":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_19","tf":1},"chapter2/16_Automatic_Reference_Counting.html#gitbook_26":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_26","tf":0.16666666666666666},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087},"chapter2/chapter2.html#gitbook_36":{"ref":"chapter2/chapter2.html#gitbook_36","tf":0.3333333333333333},"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.041666666666666664}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":1.7310049019607843}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.011029411764705883}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}}}}}}}}}}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}}}}}}}}},"o":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"接":{"docs":{},"受":{"docs":{},"一":{"docs":{},"个":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"这":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"现":{"docs":{},"有":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"。":{"docs":{},"注":{"docs":{},"意":{"docs":{},",":{"docs":{},"你":{"docs":{},"并":{"docs":{},"不":{"docs":{},"能":{"docs":{},"传":{"docs":{},"入":{"docs":{},"任":{"docs":{},"意":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"只":{"docs":{},"能":{"docs":{},"传":{"docs":{},"入":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"进":{"docs":{},"行":{"docs":{},"相":{"docs":{},"加":{"docs":{},"。":{"docs":{},"目":{"docs":{},"标":{"docs":{},"常":{"docs":{},"量":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"推":{"docs":{},"测":{"docs":{},"为":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"是":{"docs":{},"两":{"docs":{},"个":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"3":{"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"8":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0176678445229682},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}},"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}},",":{"docs":{},"除":{"docs":{},"非":{"docs":{},"你":{"docs":{},"真":{"docs":{},"的":{"docs":{},"需":{"docs":{},"要":{"docs":{},"存":{"docs":{},"储":{"docs":{},"一":{"docs":{},"个":{"docs":{},"和":{"docs":{},"当":{"docs":{},"前":{"docs":{},"平":{"docs":{},"台":{"docs":{},"原":{"docs":{},"生":{"docs":{},"字":{"docs":{},"长":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"无":{"docs":{},"符":{"docs":{},"号":{"docs":{},"整":{"docs":{},"数":{"docs":{},"。":{"docs":{},"除":{"docs":{},"了":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},",":{"docs":{},"最":{"docs":{},"好":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"即":{"docs":{},"使":{"docs":{},"你":{"docs":{},"要":{"docs":{},"存":{"docs":{},"储":{"docs":{},"的":{"docs":{},"值":{"docs":{},"已":{"docs":{},"知":{"docs":{},"是":{"docs":{},"非":{"docs":{},"负":{"docs":{},"的":{"docs":{},"。":{"docs":{},"统":{"docs":{},"一":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}}}}}}}}}}}}}}},"+":{"0":{"0":{"2":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"6":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}},"1":{"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}},"docs":{}},"9":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}}},"2":{"6":{"6":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"d":{"8":{"3":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}},"docs":{}},"docs":{},"c":{"3":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"docs":{}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}},"docs":{},"-":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.014705882352941176}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.014705882352941176}},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":1.6666666666666665}}}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}}}},"w":{"docs":{},"w":{"docs":{},"d":{"docs":{},"c":{"docs":{"index.html#gitbook_7":{"ref":"index.html#gitbook_7","tf":0.1111111111111111}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}},"k":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{},"只":{"docs":{},"在":{"docs":{},"冒":{"docs":{},"号":{"docs":{},"后":{"docs":{},"面":{"docs":{},"写":{"docs":{},"接":{"docs":{},"口":{"docs":{},"或":{"docs":{},"者":{"docs":{},"类":{"docs":{},"名":{"docs":{},"。":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"队":{"docs":{},"列":{"docs":{},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"使":{"docs":{},"你":{"docs":{},"能":{"docs":{},"够":{"docs":{},"要":{"docs":{},"求":{"docs":{},"一":{"docs":{},"个":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"一":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"(":{"docs":{},"或":{"docs":{},")":{"docs":{},"那":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"和":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"紧":{"docs":{},"随":{"docs":{},"放":{"docs":{},"置":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},",":{"docs":{},"写":{"docs":{},"在":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.01060070671378092}},"e":{"docs":{},"变":{"docs":{},"量":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"类":{"docs":{},"型":{"docs":{},"标":{"docs":{},"注":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"这":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/16_Automatic_Reference_Counting.html#gitbook_26":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_26","tf":0.16666666666666666}},"为":{"docs":{},"了":{"docs":{},"能":{"docs":{},"帮":{"docs":{},"助":{"docs":{},"你":{"docs":{},"管":{"docs":{},"理":{"docs":{},"内":{"docs":{},"存":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"更":{"docs":{},"多":{"docs":{},"的":{"docs":{},"关":{"docs":{},"于":{"docs":{},"你":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"之":{"docs":{},"间":{"docs":{},"关":{"docs":{},"系":{"docs":{},"的":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{},"本":{"docs":{},"章":{"docs":{},"描":{"docs":{},"述":{"docs":{},"了":{"docs":{},"这":{"docs":{},"些":{"docs":{},"情":{"docs":{},"况":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"为":{"docs":{},"你":{"docs":{},"示":{"docs":{},"范":{"docs":{},"怎":{"docs":{},"样":{"docs":{},"启":{"docs":{},"用":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_26":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_26","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"分":{"docs":{},"配":{"docs":{},"一":{"docs":{},"大":{"docs":{},"块":{"docs":{},"内":{"docs":{},"存":{"docs":{},"用":{"docs":{},"来":{"docs":{},"储":{"docs":{},"存":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{},"内":{"docs":{},"存":{"docs":{},"中":{"docs":{},"会":{"docs":{},"包":{"docs":{},"含":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"这":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},"所":{"docs":{},"有":{"docs":{},"相":{"docs":{},"关":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"此":{"docs":{},"外":{"docs":{},",":{"docs":{},"当":{"docs":{},"实":{"docs":{},"例":{"docs":{},"不":{"docs":{},"再":{"docs":{},"被":{"docs":{},"使":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_26":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_26","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"跟":{"docs":{},"踪":{"docs":{},"和":{"docs":{},"计":{"docs":{},"算":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"实":{"docs":{},"例":{"docs":{},"正":{"docs":{},"在":{"docs":{},"被":{"docs":{},"多":{"docs":{},"少":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"常":{"docs":{},"量":{"docs":{},"和":{"docs":{},"变":{"docs":{},"量":{"docs":{},"所":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"哪":{"docs":{},"怕":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"引":{"docs":{},"用":{"docs":{},"数":{"docs":{},"为":{"docs":{},"一":{"docs":{},",":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_26":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_26","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}},"性":{"docs":{},"质":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"存":{"docs":{},"储":{"docs":{},"值":{"docs":{},"。":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"提":{"docs":{},"供":{"docs":{},"两":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},":":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"和":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},",":{"docs":{},"从":{"docs":{},"栈":{"docs":{},"中":{"docs":{},"压":{"docs":{},"进":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"和":{"docs":{},"移":{"docs":{},"除":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"这":{"docs":{},"些":{"docs":{},"方":{"docs":{},"法":{"docs":{},"标":{"docs":{},"记":{"docs":{},"为":{"docs":{},"可":{"docs":{},"变":{"docs":{},"的":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"他":{"docs":{},"们":{"docs":{},"需":{"docs":{},"要":{"docs":{},"修":{"docs":{},"改":{"docs":{},"(":{"docs":{},"或":{"docs":{},"转":{"docs":{},"换":{"docs":{},")":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.024390243902439025}},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}},"t":{"1":{"docs":{},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}}}}}}}}}}}},"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.02389705882352941}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}},"d":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"o":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.007050528789659225}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.029023746701846966}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"2":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.01195814648729447}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}}}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.047619047619047616}}}},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}},"p":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483}},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}}}}},"方":{"docs":{},"法":{"docs":{},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}}},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}},"a":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"e":{"docs":{},"x":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266}}}},"s":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"两":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"单":{"docs":{},"例":{"docs":{},"包":{"docs":{},"含":{"docs":{},"具":{"docs":{},"有":{"docs":{},"相":{"docs":{},"同":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"的":{"docs":{},"相":{"docs":{},"同":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"的":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"首":{"docs":{},"先":{"docs":{},"检":{"docs":{},"查":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"是":{"docs":{},"否":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"同":{"docs":{},"样":{"docs":{},"数":{"docs":{},"目":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"他":{"docs":{},"们":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"数":{"docs":{},"目":{"docs":{},"不":{"docs":{},"同":{"docs":{},",":{"docs":{},"没":{"docs":{},"有":{"docs":{},"办":{"docs":{},"法":{"docs":{},"进":{"docs":{},"行":{"docs":{},"匹":{"docs":{},"配":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"就":{"docs":{},"会":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"s":{"docs":{},"c":{"docs":{},"i":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.047619047619047616}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}},"c":{"1":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}},".":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}}}}}}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"同":{"docs":{},"样":{"docs":{},"是":{"docs":{},"c":{"2":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}},"docs":{}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}},"2":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}},".":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}},"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.028268551236749116},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.07142857142857142},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.012867647058823529}},"的":{"docs":{},"基":{"docs":{},"础":{"docs":{},"上":{"docs":{},"构":{"docs":{},"建":{"docs":{},"框":{"docs":{},"架":{"docs":{},"栈":{"docs":{},"并":{"docs":{},"将":{"docs":{},"其":{"docs":{},"标":{"docs":{},"准":{"docs":{},"化":{"docs":{},"。":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"docs":{},"的":{"docs":{},"n":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"函":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"(":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"n":{"docs":{},"u":{"docs":{},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{},"获":{"docs":{},"取":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"的":{"docs":{},"数":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"]":{"docs":{},"[":{"8":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.02242152466367713}},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"写":{"docs":{},"作":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}},"泛":{"docs":{},"型":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"指":{"docs":{},"定":{"docs":{},"存":{"docs":{},"储":{"docs":{},"在":{"docs":{},"其":{"docs":{},"里":{"docs":{},"面":{"docs":{},"的":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"保":{"docs":{},"证":{"docs":{},"只":{"docs":{},"有":{"docs":{},"正":{"docs":{},"确":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"可":{"docs":{},"以":{"docs":{},"加":{"docs":{},"进":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"明":{"docs":{},"确":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"其":{"docs":{},"下":{"docs":{},"标":{"docs":{},"返":{"docs":{},"回":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"要":{"docs":{},"一":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"指":{"docs":{},"定":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},"将":{"docs":{},"会":{"docs":{},"保":{"docs":{},"留":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"知":{"docs":{},"道":{"docs":{},"特":{"docs":{},"定":{"docs":{},"容":{"docs":{},"器":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"需":{"docs":{},"要":{"docs":{},"指":{"docs":{},"定":{"docs":{},"任":{"docs":{},"何":{"docs":{},"通":{"docs":{},"过":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}}}}},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0176678445229682}}}}}},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}}},"的":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"'":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.012867647058823529}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":3.3359718557607736}}}}}}},"r":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"副":{"docs":{},"完":{"docs":{},"整":{"docs":{},"的":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"并":{"docs":{},"把":{"docs":{},"每":{"docs":{},"张":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"和":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}},"s":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.024676850763807285},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.04065040650406504}}}},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"f":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.022058823529411766},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}},"e":{"docs":{},"r":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.009191176470588236}}},"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}},"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}},"s":{"docs":{},")":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"字":{"docs":{},"面":{"docs":{},"量":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"空":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"可":{"docs":{},"变":{"docs":{},"性":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"是":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"使":{"docs":{},"用":{"docs":{},"字":{"docs":{},"符":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{},"计":{"docs":{},"算":{"docs":{},"字":{"docs":{},"符":{"docs":{},"数":{"docs":{},"量":{"docs":{},"连":{"docs":{},"接":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"和":{"docs":{},"字":{"docs":{},"符":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"插":{"docs":{},"值":{"docs":{},"比":{"docs":{},"较":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"相":{"docs":{},"等":{"docs":{},"前":{"docs":{},"缀":{"docs":{},"/":{"docs":{},"后":{"docs":{},"缀":{"docs":{},"相":{"docs":{},"等":{"docs":{},"大":{"docs":{},"写":{"docs":{},"和":{"docs":{},"小":{"docs":{},"写":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":1.6666666666666665}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.010575793184488837},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}},"u":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}},"u":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}}}},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}},"循":{"docs":{},"环":{"docs":{},"和":{"docs":{},"半":{"docs":{},"闭":{"docs":{},"区":{"docs":{},"间":{"docs":{},"操":{"docs":{},"作":{"docs":{},"(":{"docs":{},".":{"docs":{},".":{"docs":{},")":{"docs":{},"来":{"docs":{},"迭":{"docs":{},"代":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"每":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"不":{"docs":{},"等":{"docs":{},"于":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"不":{"docs":{},"等":{"docs":{},",":{"docs":{},"则":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"不":{"docs":{},"匹":{"docs":{},"配":{"docs":{},",":{"docs":{},"返":{"docs":{},"回":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"-":{"docs":{},"u":{"docs":{},"n":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}},"—":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}},"l":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}},"i":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"[":{"3":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{},"\"":{"docs":{},"m":{"docs":{},"i":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"<":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},">":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}},"中":{"docs":{},"这":{"docs":{},"个":{"docs":{},"单":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"写":{"docs":{},"做":{"docs":{},":":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"现":{"docs":{},"在":{"docs":{},"则":{"docs":{},"可":{"docs":{},"以":{"docs":{},"成":{"docs":{},"功":{"docs":{},"的":{"docs":{},"编":{"docs":{},"译":{"docs":{},"过":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"任":{"docs":{},"何":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"如":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"或":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"用":{"docs":{},"某":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"。":{"docs":{},"请":{"docs":{},"注":{"docs":{},"意":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"仍":{"docs":{},"然":{"docs":{},"返":{"docs":{},"回":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"非":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"功":{"docs":{},"能":{"docs":{},"是":{"docs":{},"去":{"docs":{},"查":{"docs":{},"找":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"给":{"docs":{},"定":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{},"若":{"docs":{},"查":{"docs":{},"找":{"docs":{},"到":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},",":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"该":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"在":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"的":{"docs":{},"索":{"docs":{},"引":{"docs":{},"值":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},",":{"docs":{},"反":{"docs":{},"之":{"docs":{},"则":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"并":{"docs":{},"指":{"docs":{},"定":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"为":{"4":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}}}}}}}},"表":{"docs":{},"示":{"3":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}}}}}},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"y":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.02120141342756184}},"e":{"docs":{},"的":{"docs":{},"值":{"docs":{},"从":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"!":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"改":{"docs":{},"为":{"docs":{},"了":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"!":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}},"o":{"docs":{},"m":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0282021151586369},"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.047619047619047616},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.013192612137203167},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.03288490284005979}},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"名":{"docs":{},"字":{"docs":{},"和":{"docs":{},"参":{"docs":{},"数":{"docs":{},"来":{"docs":{},"调":{"docs":{},"用":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{},"使":{"docs":{},"用":{"docs":{},"-":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":10.023809523809524},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.01046337817638266}}}}}},"作":{"docs":{},"为":{"docs":{},"前":{"docs":{},"缀":{"docs":{},"。":{"docs":{},"指":{"docs":{},"定":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"时":{"docs":{},",":{"docs":{},"用":{"docs":{},"返":{"docs":{},"回":{"docs":{},"箭":{"docs":{},"头":{"docs":{},"-":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.005875440658049354},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.007352941176470588},"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.11904761904761904},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}},"p":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}},"成":{"docs":{},"员":{"docs":{},":":{"docs":{},"给":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"常":{"docs":{},"量":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"时":{"docs":{},",":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"成":{"docs":{},"员":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"需":{"docs":{},"要":{"docs":{},"用":{"docs":{},"全":{"docs":{},"名":{"docs":{},"来":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"常":{"docs":{},"量":{"docs":{},"没":{"docs":{},"有":{"docs":{},"显":{"docs":{},"式":{"docs":{},"指":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"里":{"docs":{},",":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"成":{"docs":{},"员":{"docs":{},"使":{"docs":{},"用":{"docs":{},"缩":{"docs":{},"写":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"来":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"的":{"docs":{},"值":{"docs":{},"已":{"docs":{},"经":{"docs":{},"知":{"docs":{},"道":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}},"x":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"’":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"/":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}},"i":{"docs":{},"o":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.047619047619047616},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"f":{"docs":{},"和":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"来":{"docs":{},"处":{"docs":{},"理":{"docs":{},"值":{"docs":{},"缺":{"docs":{},"失":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{},"有":{"docs":{},"些":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"值":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"值":{"docs":{},"可":{"docs":{},"能":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"值":{"docs":{},"或":{"docs":{},"者":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"来":{"docs":{},"进":{"docs":{},"行":{"docs":{},"条":{"docs":{},"件":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"、":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"、":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},",":{"docs":{},"条":{"docs":{},"件":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"—":{"docs":{},"—":{"docs":{},"这":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"像":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"a":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"(":{"7":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}},"b":{"docs":{},"y":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.0079155672823219}}}},"n":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.026385224274406333}}}}}}},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.05013192612137203}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}}}}},"c":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.01195814648729447}}}}},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}},"t":{"8":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"的":{"docs":{},"数":{"docs":{},"字":{"docs":{},"范":{"docs":{},"围":{"docs":{},"是":{"docs":{},"-":{"1":{"2":{"8":{"docs":{},"~":{"1":{"2":{"7":{"docs":{},",":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"能":{"docs":{},"存":{"docs":{},"储":{"docs":{},"的":{"docs":{},"数":{"docs":{},"字":{"docs":{},"范":{"docs":{},"围":{"docs":{},"是":{"0":{"docs":{},"~":{"2":{"5":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.024676850763807285},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.02120141342756184},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.021108179419525065},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.04878048780487805},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.03736920777279522}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},"把":{"docs":{},"常":{"docs":{},"量":{"docs":{},"名":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"名":{"docs":{},"当":{"docs":{},"做":{"docs":{},"占":{"docs":{},"位":{"docs":{},"符":{"docs":{},"加":{"docs":{},"入":{"docs":{},"到":{"docs":{},"长":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"中":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"会":{"docs":{},"用":{"docs":{},"当":{"docs":{},"前":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"值":{"docs":{},"替":{"docs":{},"换":{"docs":{},"这":{"docs":{},"些":{"docs":{},"占":{"docs":{},"位":{"docs":{},"符":{"docs":{},"。":{"docs":{},"将":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"变":{"docs":{},"量":{"docs":{},"名":{"docs":{},"放":{"docs":{},"入":{"docs":{},"反":{"docs":{},"斜":{"docs":{},"杠":{"docs":{},"符":{"docs":{},"加":{"docs":{},"一":{"docs":{},"对":{"docs":{},"圆":{"docs":{},"括":{"docs":{},"号":{"docs":{},"中":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"\\":{"docs":{},"(":{"docs":{},")":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}}}}}}}},"(":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":10}}}}}},"就":{"docs":{},"够":{"docs":{},"了":{"docs":{},"。":{"docs":{},"这":{"docs":{},"可":{"docs":{},"以":{"docs":{},"提":{"docs":{},"高":{"docs":{},"代":{"docs":{},"码":{"docs":{},"一":{"docs":{},"致":{"docs":{},"性":{"docs":{},"和":{"docs":{},"可":{"docs":{},"复":{"docs":{},"用":{"docs":{},"性":{"docs":{},"。":{"docs":{},"即":{"docs":{},"使":{"docs":{},"是":{"docs":{},"在":{"3":{"2":{"docs":{},"位":{"docs":{},"平":{"docs":{},"台":{"docs":{},"上":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"的":{"docs":{},"整":{"docs":{},"数":{"docs":{},"范":{"docs":{},"围":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"达":{"docs":{},"到":{"docs":{},"-":{"2":{"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"8":{"docs":{},"~":{"2":{"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"7":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"整":{"docs":{},"型":{"docs":{},";":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"和":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"是":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"型":{"docs":{},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"是":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"型":{"docs":{},";":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"是":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"更":{"docs":{},"大":{"docs":{},"或":{"docs":{},"者":{"docs":{},"更":{"docs":{},"小":{"docs":{},"的":{"docs":{},"数":{"docs":{},"字":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}},"指":{"docs":{},"定":{"docs":{},"了":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"适":{"docs":{},"用":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"被":{"docs":{},"用":{"docs":{},"作":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"这":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"只":{"docs":{},"能":{"docs":{},"用":{"docs":{},"于":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"值":{"docs":{},",":{"docs":{},"不":{"docs":{},"过":{"docs":{},",":{"docs":{},"其":{"docs":{},"对":{"docs":{},"于":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"三":{"docs":{},"个":{"docs":{},"要":{"docs":{},"求":{"docs":{},",":{"docs":{},"在":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"非":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"适":{"docs":{},"用":{"docs":{},"于":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}},"索":{"docs":{},"引":{"docs":{},"值":{"docs":{},"下":{"docs":{},"标":{"docs":{},"可":{"docs":{},"以":{"docs":{},"检":{"docs":{},"索":{"docs":{},"到":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}},"这":{"docs":{},"一":{"docs":{},"行":{"docs":{},",":{"docs":{},"一":{"docs":{},"切":{"docs":{},"仍":{"docs":{},"旧":{"docs":{},"可":{"docs":{},"以":{"docs":{},"工":{"docs":{},"作":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"清":{"docs":{},"楚":{"docs":{},"的":{"docs":{},"知":{"docs":{},"道":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"将":{"docs":{},"抽":{"docs":{},"象":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"转":{"docs":{},"换":{"docs":{},"为":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}}}}}},"p":{"docs":{},"i":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.008968609865470852}}}}},"-":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"参":{"docs":{},"数":{"docs":{},"交":{"docs":{},"换":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"被":{"docs":{},"描":{"docs":{},"述":{"docs":{},"为":{"docs":{},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"-":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"]":{"docs":{},"[":{"1":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.014947683109118086}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.01046337817638266}},"e":{"docs":{},"。":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}}}}}}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"需":{"docs":{},"求":{"docs":{},"通":{"docs":{},"过":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"约":{"docs":{},"束":{"docs":{},"和":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"空":{"docs":{},"的":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}},"是":{"docs":{},"如":{"docs":{},"何":{"docs":{},"存":{"docs":{},"储":{"docs":{},"的":{"docs":{},"或":{"docs":{},"何":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"允":{"docs":{},"许":{"docs":{},"的":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"协":{"docs":{},"议":{"docs":{},"只":{"docs":{},"指":{"docs":{},"定":{"docs":{},"三":{"docs":{},"个":{"docs":{},"任":{"docs":{},"何":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"该":{"docs":{},"参":{"docs":{},"数":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}},"o":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.011029411764705883}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.09523809523809523},"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0176678445229682},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}},"c":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}},"s":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.047619047619047616},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"[":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"a":{"docs":{},"y":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.041666666666666664}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"e":{"docs":{},"改":{"docs":{},"成":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"会":{"docs":{},"是":{"docs":{},"什":{"docs":{},"么":{"docs":{},"?":{"docs":{},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"当":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"时":{"docs":{},"给":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"<":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"e":{"docs":{},"标":{"docs":{},"记":{"docs":{},"—":{"docs":{},"—":{"docs":{},"如":{"docs":{},"果":{"docs":{},"没":{"docs":{},"有":{"docs":{},"添":{"docs":{},"加":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"就":{"docs":{},"重":{"docs":{},"写":{"docs":{},"父":{"docs":{},"类":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"话":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"会":{"docs":{},"报":{"docs":{},"错":{"docs":{},"。":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"同":{"docs":{},"样":{"docs":{},"会":{"docs":{},"检":{"docs":{},"测":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.010554089709762533},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.032520325203252036}}}}}}}},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}},"<":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},">":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.005875440658049354}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.03525264394829612},"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.047619047619047616},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.03430079155672823},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.032520325203252036},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.026905829596412557}},"f":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"缩":{"docs":{},"写":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"函":{"docs":{},"数":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":3.333333333333333}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.023746701846965697}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.04878048780487805}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"(":{"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"docs":{}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"在":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"中":{"docs":{},",":{"docs":{},"但":{"docs":{},"仍":{"docs":{},"可":{"docs":{},"被":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"在":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"实":{"docs":{},"例":{"docs":{},"时":{"docs":{},"能":{"docs":{},"够":{"docs":{},"通":{"docs":{},"过":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"类":{"docs":{},"型":{"docs":{},"中":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"名":{"docs":{},"称":{"docs":{},"单":{"docs":{},"独":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"属":{"docs":{},"性":{"docs":{},"能":{"docs":{},"正":{"docs":{},"确":{"docs":{},"得":{"docs":{},"输":{"docs":{},"出":{"docs":{},"对":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"牌":{"docs":{},"有":{"1":{"docs":{},"和":{"1":{"1":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"自":{"docs":{},"己":{"docs":{},"内":{"docs":{},"部":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"包":{"docs":{},"含":{"docs":{},"两":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"其":{"docs":{},"余":{"docs":{},"牌":{"docs":{},"都":{"docs":{},"只":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"数":{"docs":{},"值":{"docs":{},"。":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"会":{"docs":{},"根":{"docs":{},"据":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"面":{"docs":{},"值":{"docs":{},",":{"docs":{},"用":{"docs":{},"适":{"docs":{},"当":{"docs":{},"的":{"docs":{},"数":{"docs":{},"值":{"docs":{},"去":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"给":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"会":{"docs":{},"使":{"docs":{},"用":{"docs":{},"特":{"docs":{},"殊":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"对":{"docs":{},"于":{"docs":{},"数":{"docs":{},"字":{"docs":{},"面":{"docs":{},"值":{"docs":{},"的":{"docs":{},"牌":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"描":{"docs":{},"述":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"从":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"~":{"1":{"0":{"docs":{},",":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{},",":{"1":{"3":{"docs":{},"张":{"docs":{},"牌":{"docs":{},",":{"docs":{},"并":{"docs":{},"分":{"docs":{},"别":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"表":{"docs":{},"示":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"面":{"docs":{},"值":{"docs":{},"。":{"docs":{},"(":{"docs":{},"这":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"不":{"docs":{},"适":{"docs":{},"用":{"docs":{},"于":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.047493403693931395}}}}}}}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.026905829596412557}},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"和":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"i":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"m":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483}}}}}}}},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":1.6685049019607843}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.01195814648729447}}}}}}}}}}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"的":{"docs":{},"值":{"docs":{},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.0316622691292876}}}}},"e":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}},"w":{"docs":{},"o":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},",":{"docs":{},"然":{"docs":{},"而":{"docs":{},"常":{"docs":{},"量":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"。":{"docs":{},"它":{"docs":{},"们":{"docs":{},"不":{"docs":{},"能":{"docs":{},"直":{"docs":{},"接":{"docs":{},"相":{"docs":{},"加":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"们":{"docs":{},"类":{"docs":{},"型":{"docs":{},"不":{"docs":{},"同":{"docs":{},"。":{"docs":{},"所":{"docs":{},"以":{"docs":{},"要":{"docs":{},"调":{"docs":{},"用":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},")":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"数":{"docs":{},"字":{"docs":{},"并":{"docs":{},"用":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":5.013452914798206}},"s":{"docs":{},"中":{"docs":{},"知":{"docs":{},"道":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"有":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"去":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"新":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.007473841554559043}}}}}}}}},")":{"docs":{},"是":{"docs":{},"用":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"括":{"docs":{},"起":{"docs":{},"来":{"docs":{},"的":{"docs":{},"(":{"docs":{},"<":{"docs":{},"t":{"docs":{},">":{"docs":{},")":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"告":{"docs":{},"诉":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"那":{"docs":{},"个":{"docs":{},"t":{"docs":{},"是":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"所":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"t":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"节":{"docs":{},"点":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"不":{"docs":{},"会":{"docs":{},"去":{"docs":{},"查":{"docs":{},"找":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"命":{"docs":{},"名":{"docs":{},"为":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"分":{"docs":{},"别":{"docs":{},"代":{"docs":{},"表":{"docs":{},"t":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"“":{"docs":{},"某":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{},"”":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"提":{"docs":{},"供":{"docs":{},"给":{"docs":{},"后":{"docs":{},"来":{"docs":{},"用":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"将":{"docs":{},"来":{"docs":{},"类":{"docs":{},"型":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"的":{"docs":{},"定":{"docs":{},"义":{"docs":{},"里":{"docs":{},"任":{"docs":{},"何":{"docs":{},"地":{"docs":{},"方":{"docs":{},"表":{"docs":{},"示":{"docs":{},"为":{"docs":{},"“":{"docs":{},"t":{"docs":{},"”":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},")":{"docs":{},"来":{"docs":{},"代":{"docs":{},"替":{"docs":{},"实":{"docs":{},"际":{"docs":{},"类":{"docs":{},"型":{"docs":{},"名":{"docs":{},"(":{"docs":{},"如":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"或":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},"。":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"名":{"docs":{},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"表":{"docs":{},"示":{"docs":{},"t":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"其":{"docs":{},"规":{"docs":{},"定":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"同":{"docs":{},"一":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"t":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"管":{"docs":{},"t":{"docs":{},"表":{"docs":{},"示":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"只":{"docs":{},"有":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"在":{"docs":{},"每":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"所":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"实":{"docs":{},"际":{"docs":{},"类":{"docs":{},"型":{"docs":{},"决":{"docs":{},"定":{"docs":{},"了":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"被":{"docs":{},"用":{"docs":{},"作":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"参":{"docs":{},"数":{"docs":{},"和":{"docs":{},"下":{"docs":{},"标":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"因":{"docs":{},"此":{"docs":{},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"被":{"docs":{},"用":{"docs":{},"作":{"docs":{},"这":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"容":{"docs":{},"器":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"t":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"子":{"docs":{},"类":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"约":{"docs":{},"束":{"docs":{},";":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"u":{"docs":{},",":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"u":{"docs":{},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"2":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"docs":{"chapter1/01_swift.html#gitbook_8":{"ref":"chapter1/01_swift.html#gitbook_8","tf":0.047619047619047616},"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.01060070671378092}},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"e":{"docs":{},"p":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.02391629297458894}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}},"二":{"docs":{},"十":{"docs":{},"一":{"docs":{},"点":{"docs":{},")":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"模":{"docs":{},"拟":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"中":{"docs":{},"的":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"点":{"docs":{},"数":{"docs":{},"。":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"包":{"docs":{},"含":{"2":{"docs":{},"个":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"类":{"docs":{},"型":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"没":{"docs":{},"有":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"的":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},",":{"docs":{},"在":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"自":{"docs":{},"身":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"—":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"与":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},",":{"docs":{},"也":{"docs":{},"同":{"docs":{},"样":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"属":{"docs":{},"性":{"docs":{},"用":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"和":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"的":{"docs":{},"中":{"docs":{},"内":{"docs":{},"容":{"docs":{},"来":{"docs":{},"构":{"docs":{},"建":{"docs":{},"对":{"docs":{},"这":{"docs":{},"张":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"名":{"docs":{},"字":{"docs":{},"和":{"docs":{},"数":{"docs":{},"值":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},",":{"docs":{},"并":{"docs":{},"用":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"规":{"docs":{},"则":{"docs":{},"中":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"牌":{"docs":{},"可":{"docs":{},"以":{"docs":{},"表":{"docs":{},"示":{"1":{"docs":{},"或":{"docs":{},"者":{"1":{"1":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"这":{"docs":{},"一":{"docs":{},"特":{"docs":{},"征":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"在":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"型":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"的":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.08333333333333333}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.026385224274406333},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}},")":{"docs":{},"默":{"docs":{},"认":{"docs":{},"都":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"h":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"n":{"docs":{},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.014134275618374558}}}}}}},"d":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.010554089709762533}},"s":{"docs":{},"(":{"docs":{},"s":{"1":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}},"docs":{}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266}}}}}},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.011029411764705883}},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123}}},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"c":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}}}},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"上":{"docs":{},",":{"docs":{},"当":{"docs":{},"然":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"(":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"协":{"docs":{},"议":{"docs":{},")":{"docs":{},"。":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"基":{"docs":{},"本":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"如":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.013192612137203167}},"e":{"docs":{},"s":{"docs":{},"[":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}}}}}}},"o":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.012925969447708578},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0176678445229682},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"添":{"docs":{},"加":{"docs":{},"a":{"docs":{},"b":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}}}}}}}}}},"或":{"docs":{},"者":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}},"精":{"docs":{},"确":{"docs":{},"度":{"docs":{},"很":{"docs":{},"高":{"docs":{},",":{"docs":{},"至":{"docs":{},"少":{"docs":{},"有":{"1":{"5":{"docs":{},"位":{"docs":{},"数":{"docs":{},"字":{"docs":{},",":{"docs":{},"而":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"最":{"docs":{},"少":{"docs":{},"只":{"docs":{},"有":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}},"表":{"docs":{},"示":{"6":{"4":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}},"docs":{}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}}}}}},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"c":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}}}}}}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"、":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.005875440658049354},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018}},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}}}}}}}}}}}}},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}},">":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"安":{"docs":{},"全":{"docs":{},"的":{"docs":{},"使":{"docs":{},"用":{"docs":{},"在":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"其":{"docs":{},"保":{"docs":{},"证":{"docs":{},"支":{"docs":{},"持":{"docs":{},"等":{"docs":{},"式":{"docs":{},"操":{"docs":{},"作":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"说":{"docs":{},"明":{"docs":{},"这":{"docs":{},"个":{"docs":{},"事":{"docs":{},"实":{"docs":{},",":{"docs":{},"当":{"docs":{},"你":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"时":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"也":{"docs":{},"就":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"“":{"docs":{},"任":{"docs":{},"何":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.005875440658049354}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}},",":{"docs":{},"那":{"docs":{},"这":{"docs":{},"个":{"docs":{},"数":{"docs":{},"相":{"docs":{},"当":{"docs":{},"于":{"docs":{},"基":{"docs":{},"数":{"docs":{},"和":{"1":{"0":{"docs":{},"^":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}},"docs":{}},"2":{"docs":{},"^":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}},"docs":{}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"]":{"docs":{},"[":{"6":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"7":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"w":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}}}},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.011029411764705883}},"e":{"docs":{},"t":{"docs":{},"g":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"s":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.16666666666666666}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.125}},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.125}}}}}}}},"方":{"docs":{},"法":{"docs":{},"​":{"docs":{},"​":{"docs":{},"块":{"docs":{},"可":{"docs":{},"以":{"docs":{},"由":{"docs":{},"一":{"docs":{},"个":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"后":{"docs":{},"跟":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"构":{"docs":{},"成":{"docs":{},",":{"docs":{},"用":{"docs":{},"大":{"docs":{},"括":{"docs":{},"号":{"docs":{},"括":{"docs":{},"起":{"docs":{},"来":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"由":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"后":{"docs":{},"跟":{"docs":{},"一":{"docs":{},"个":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}},"e":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414},"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.047619047619047616}},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"结":{"docs":{},"束":{"docs":{},"它":{"docs":{},"的":{"docs":{},"执":{"docs":{},"行":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}},"a":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_37":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_37","tf":0.08333333333333333}}}}}}}},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.021108179419525065}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},",":{"docs":{},"即":{"docs":{},"便":{"docs":{},"你":{"docs":{},"没":{"docs":{},"有":{"docs":{},"实":{"docs":{},"现":{"docs":{},"它":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},":":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"的":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"是":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"集":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"数":{"docs":{},"组":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"数":{"docs":{},"组":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"甚":{"docs":{},"至":{"docs":{},"于":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"任":{"docs":{},"何":{"docs":{},"其":{"docs":{},"他":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"数":{"docs":{},"据":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{},"同":{"docs":{},"样":{"docs":{},"的":{"docs":{},",":{"docs":{},"你":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"创":{"docs":{},"建":{"docs":{},"存":{"docs":{},"储":{"docs":{},"任":{"docs":{},"何":{"docs":{},"指":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018}}}}},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"e":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266}}},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.005875440658049354}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}},"k":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.018469656992084433}},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.0079155672823219}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}},"s":{"docs":{},"或":{"docs":{},"者":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"指":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"(":{"docs":{},"比":{"docs":{},"如":{"docs":{},"数":{"docs":{},"字":{"1":{"0":{"docs":{},"或":{"docs":{},"者":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"新":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"给":{"docs":{},"它":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"1":{"0":{"docs":{},"。":{"docs":{},"然":{"docs":{},"后":{"docs":{},",":{"docs":{},"声":{"docs":{},"明":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"字":{"docs":{},"是":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"并":{"docs":{},"将":{"docs":{},"它":{"docs":{},"的":{"docs":{},"值":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.011029411764705883}}}}}},"a":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}},"p":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.018469656992084433}}},"d":{"docs":{},"e":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}}}}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.016442451420029897}}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.01060070671378092}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.011029411764705883}}}}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"整":{"docs":{},"数":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279}}}}}},"和":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}}}},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.005875440658049354},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.022326674500587545},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"d":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123}},"e":{"docs":{},"的":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"子":{"docs":{},"类":{"docs":{},"c":{"docs":{},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"接":{"docs":{},"收":{"docs":{},"两":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"半":{"docs":{},"径":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"实":{"docs":{},"现":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"和":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}}}},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}}}}}}}},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}}}},"e":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}}}}},"i":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}},",":{"docs":{},"?":{"docs":{},"后":{"docs":{},"面":{"docs":{},"的":{"docs":{},"东":{"docs":{},"西":{"docs":{},"都":{"docs":{},"会":{"docs":{},"被":{"docs":{},"忽":{"docs":{},"略":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"整":{"docs":{},"个":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}},"条":{"docs":{},"件":{"docs":{},"会":{"docs":{},"判":{"docs":{},"断":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"大":{"docs":{},"括":{"docs":{},"号":{"docs":{},"中":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"会":{"docs":{},"被":{"docs":{},"跳":{"docs":{},"过":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"不":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"会":{"docs":{},"将":{"docs":{},"值":{"docs":{},"赋":{"docs":{},"给":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.008130081300813009}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.013452914798206279}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"e":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.005979073243647235}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.01645123384253819},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.0316622691292876},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.007050528789659225}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}}}}}}},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.005277044854881266}}}}}}}}}}}},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}},"s":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.01838235294117647}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.016260162601626018}}}}},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}},";":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}},";":{"docs":{},")":{"docs":{},",":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"f":{"4":{"2":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}},"":{"docs":{},"":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"之":{"docs":{},"所":{"docs":{},"以":{"docs":{},"叫":{"docs":{},"这":{"docs":{},"个":{"docs":{},"名":{"docs":{},"字":{"docs":{},"是":{"docs":{},"因":{"docs":{},"为":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"人":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"当":{"docs":{},"做":{"docs":{},"输":{"docs":{},"入":{"docs":{},",":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"给":{"docs":{},"这":{"docs":{},"个":{"docs":{},"人":{"docs":{},"的":{"docs":{},"问":{"docs":{},"候":{"docs":{},"语":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"完":{"docs":{},"成":{"docs":{},"这":{"docs":{},"个":{"docs":{},"任":{"docs":{},"务":{"docs":{},",":{"docs":{},"你":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"输":{"docs":{},"入":{"docs":{},"参":{"docs":{},"数":{"docs":{},"-":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"做":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},",":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"包":{"docs":{},"含":{"docs":{},"给":{"docs":{},"这":{"docs":{},"个":{"docs":{},"人":{"docs":{},"问":{"docs":{},"候":{"docs":{},"语":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_16":{"ref":"chapter2/06_Functions.html#gitbook_16","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}},"大":{"docs":{},"于":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}},"按":{"docs":{},"照":{"docs":{},"字":{"docs":{},"母":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"后":{"docs":{},"出":{"docs":{},"现":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.04935370152761457},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.014134275618374558},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.011029411764705883},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.010554089709762533},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.024390243902439025},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.02391629297458894}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0029895366218236174}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.0055147058823529415}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007067137809187279},"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.04878048780487805},"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.017937219730941704}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_29":{"ref":"chapter2/19_Nested_Types.html#gitbook_29","tf":0.024390243902439025}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.008968609865470852}},"”":{"docs":{},"。":{"docs":{},"不":{"docs":{},"是":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"中":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"等":{"docs":{},"式":{"docs":{},"符":{"docs":{},"(":{"docs":{},"=":{"docs":{},"=":{"docs":{},")":{"docs":{},"进":{"docs":{},"行":{"docs":{},"比":{"docs":{},"较":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"你":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"类":{"docs":{},"或":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"一":{"docs":{},"个":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"模":{"docs":{},"型":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"没":{"docs":{},"法":{"docs":{},"猜":{"docs":{},"到":{"docs":{},"对":{"docs":{},"于":{"docs":{},"这":{"docs":{},"个":{"docs":{},"类":{"docs":{},"或":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"而":{"docs":{},"言":{"docs":{},"“":{"docs":{},"等":{"docs":{},"于":{"docs":{},"”":{"docs":{},"的":{"docs":{},"意":{"docs":{},"思":{"docs":{},"。":{"docs":{},"正":{"docs":{},"因":{"docs":{},"如":{"docs":{},"此":{"docs":{},",":{"docs":{},"这":{"docs":{},"部":{"docs":{},"分":{"docs":{},"代":{"docs":{},"码":{"docs":{},"不":{"docs":{},"能":{"docs":{},"可":{"docs":{},"能":{"docs":{},"保":{"docs":{},"证":{"docs":{},"工":{"docs":{},"作":{"docs":{},"于":{"docs":{},"每":{"docs":{},"个":{"docs":{},"可":{"docs":{},"能":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.004700352526439483}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0011750881316098707}}},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.003676470588235294}}}}}}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/22_Generics.html#gitbook_32":{"ref":"chapter2/22_Generics.html#gitbook_32","tf":0.004484304932735426}}}}}},"y":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_9":{"ref":"chapter1/02_a_swift_tour.html#gitbook_9","tf":0.0035252643948296123},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_13":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_13","tf":0.001838235294117647}}}}}}}}},"z":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035335689045936395}},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/07_Closures.html#gitbook_17":{"ref":"chapter2/07_Closures.html#gitbook_17","tf":0.002638522427440633}}}}}}},"length":1297},"corpusTokens":["0","0,$1,$2","0..3","0..somecontainer.count","0..time","0.0","0.0125","0.1","0.14159","0.25","000123.456","0b","0b10001","0o","0o21","0x","0x11","0xc.3p0","0xfp-2","0xfp2","0x)。小数点两边必须有至少一个十进制数字(或者是十六进制的数字)。浮点原始值还有一个可选的指数,在十进制浮点数中通过大写或者小写的e来指定,在十六进制浮点数中通过大写或者小写的p","0,这时闭包会将字符串输出,而map","1","1.21875e1","1.25","1.25e-2","1.25e2","10","100","103","107","10^-2","10^2","10中,如果number为16,则返回6,58返回8,510返回0","11","111","12","12.1875","125.0","128054","128054,是一个十六进制1f436","13","144","15","159","16","16,58,510","16变成了1,58变成了5,510变成了51","17","182","19","1_000_000","1_000_000.000_000_1","2","2.5","20","2014","21","240","25","255","2^-2","2^2","2_000","3","3.0","3.1","3.14159","3.14159,0.1和-273.15","3.59","3.69","3.75","3.79","30","32位平台上,int和int32","32位平台上,uint和uint32","33","39","3可以直接和原始值0.14159","3没有显式声明类型,而表达式中出现了一个浮点原始值,所以表达式会被推测为doubl","4","4.75会变成4,-3.9会变成3","40","42","42和-23","42和3.14159","42并且没有标明类型,swift","43","4个string","5","5.2","50","510","55357","56374","58","597","6","60.0","64位平台上,int和int64","64位平台上,uint和uint64","68","69105","7","7.5","7.simpledescript","70","70.0","75","8","87","8:09","8、16、32和64","8位无符号整数类型是uint8,32位有符号整数类型是int32","9","9.3","9.9","94","a.adjust","a.simpledescript","abov","ac","ace.toraw","acerawvalu","act","act1scenecount","action","ad","add","addon","addone(numb","adescript","adjust","adopt","again","alex","alia","alik","allitemsmatch","allitemsmatch(stackofstr","allitemsmatch的泛型函数,用来检查是否两个container单例包含具有相同顺序的相同items。如果匹配到所有的items,那么返回一个为true的boolean","allitemsmatch首先检查两个容器是否拥有同样数目的items,如果他们的items数目不同,没有办法进行匹配,函数就会fals","allow","alsoincrementbyten","alwai","amount","andrea","anna","anoth","anothercontain","anothercontainer.count","anothercontainer[i","anothercontainer中的item","anothercontainer是一个c2","anotheremptystr","anotherint","anotherpi","anotherproperti","anotherstr","ant","anycommonel","anycommonelements([1","api","app","append(item","append方法添加一个新item","appl","applese","applesummari","approach","arc","arc为了能帮助你管理内存,需要更多的关于你的代码之间关系的信息。本章描述了这些情况,并且为你示范怎样启用arc","arc会分配一大块内存用来储存实例的信息。内存中会包含实例的类型信息,以及这个实例所有相关属性的值。此外,当实例不再被使用时,arc","arc会跟踪和计算每一个类实例正在被多少属性,常量和变量所引用。哪怕实例的引用数为一,arc","area","argument","arrai","arrayofstr","array和dictionari","array性质的items存储值。stack提供两个方法:push和pop,从栈中压进一个值和移除一个值。这些方法标记为可变的,因为他们需要修改(或转换)结构体的item","ascii","attempt","automat","avail","b","b.adjust","b.simpledescript","backward","backwards(s1","barri","bdescript","behavior","binaryinteg","blackheart","blackjackcard","blackjackcard(rank","blackjackcard(二十一点),用来模拟blackjackcard中的扑克牌点数。blackjackcard结构体包含2个嵌套定义的枚举类型suit","blackjackcard.suit.hearts.toraw","blackjackcard是一个没有自定义构造函数的结构体,在memberwis","blackjackcard结构体自身有两个属性—rank与suit,也同样定义了一个计算属性description,description属性用rank和suit的中内容来构建对这张扑克牌名字和数值的描述,并用可选类型second","blackjackcard规则中,ace牌可以表示1或者11,ace牌的这一特征用一个嵌套在枚举型rank的结构体valu","block","blue","bodi","bonjour","bool","boolean","bool)默认都是hash","both","bottl","brian","c","c1","c1.itemtyp","c1必须遵循contain","c1的itemtype同样是c2的itemtyp","c1的itemtype必须遵循equat","c2","c2.itemtyp","c2必须遵循contain","call","cannotbeneg","captain","captur","capulet'","caputur","card","card(rank","card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit","carriag","case","cat","catfish","celeri","cell","chang","charact","character1","character2","characterpluscharact","characterplusstr","characters)字符串字面量初始化空字符串字符串可变性字符串是值类型使用字符(characters)计算字符数量连接字符串和字符字符串插值比较字符串字符串相等前缀/后缀相等大写和小写字符串unicodeunicod","check","chees","chri","class","closur","club","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","cocoa里的nslog函数一样,println","code","codeunit","collect","comment","compile-tim","concept","condit","condition(item","conform","consid","constant","constantstr","constraints][8","contain","container协议声明了一个itemtype的关联类型,写作typealia","container协议的例子,定义了一个itemtyp","container协议的泛型stack","container协议的类型必须指定存储在其里面的值类型,必须保证只有正确类型的items可以加进容器里,必须明确可以通过其下标返回item","container协议需要一个方法指定容器里的元素将会保留,而不需要知道特定容器的类型。container协议需要指定任何通过append","control","convertedrank","convertedrank.simpledescript","count","countel","countelements(unusualmenageri","counter","counter.incrementby(2","count属性获取容器里items的数量,并返回一个int","cuatro","cucumb","current","currentloginattempt","cycl","c的兼容性的限制。swift","d","dai","daniella","decimaldoubl","decimalinteg","default","defin","deinit","descript","diamond","dictionary(arrai","equatable类型都可以安全的使用在findindex函数中,因为其保证支持等式操作。为了说明这个事实,当你定义一个函数时,你可以写一个equat","equatable,也就意味着“任何t类型都遵循equat","equilater","equilateraltriangl","equilateraltriangle(sidelength","equival","error","error(error","error(str","everyth","ewa","exampl","exampleprotocol","exist","explicitdoubl","exponentdoubl","exp,那这个数相当于基数和10^exp","exp,那这个数相当于基数和2^exp","extens","extension][6","extension][7","failur","fals","fibonacci","findindex([\"mik","findindex([3.14159","findindex(arrai","findindex中这个单个类型参数写做:t","findindex函数现在则可以成功的编译过,并且作用于任何遵循equatable的类型,如double或str","findindex,用某个类型t","findstringindex","findstringindex(arrai","findstringindex(str","findstringindex的泛型版本findindex。请注意这个函数仍然返回int","findstringindex的非泛型函数,该函数功能是去查找包含一给定string值的数组。若查找到匹配的字符串,findstringindex函数返回该字符串在数组中的索引值(int),反之则返回nil","first","firstforloop","five","fiveeight","fiveonezero","float","float并指定初始值为4","float表示32","for-in","for-in循环和半闭区间操作(..)来迭代somecontainer中的所有items。对于每个item,函数检查是否somecontainer中的item不等于对应的anothercontainer中的item,如果这两个items不等,则这两个容器不匹配,返回fals","force-unwrap","forincr","for—that","foundat","foundindex","four","friar","friendlywelcom","friendlywelcome的值从"hello!"改为了"bonjour!"","fromthetop","fruit","fruitsummari","func","function","func作为前缀。指定函数返回类型时,用返回箭头->","func来声明一个函数,使用名字和参数来调用函数。使用->","g","gener","getgaspric","getter","getter-claus","getter-sett","getter-setter-block","getter-setter方法​​块可以由一个getter子句后跟一个可选的setter子句构成,用大括号括起来,或者由一个setter子句后跟一个gett","getters和sett","give","goe","good","grammar","great","greet","greet(\"bob","greet(nam","greeting被调用,该函数结束它的执行并返回greet","gt","guide,即便你没有实现它。例如:swift的array和dictionary类型都是泛型集。你可以创建一个int数组,也可创建一个string数组,或者甚至于可以是任何其他swift的类型数据数组。同样的,你也可以创建存储任何指定类型的字典(dictionari","hall","hasanymatches(list","hasanymatches(numb","hashtabl","hasprefix","hasprefix/hassuffix","heart","hearts.simpledescript","heartsdescript","heartssymbol","hearts成员:给hearts常量赋值时,枚举成员suit.hearts需要用全名来引用,因为常量没有显式指定类型。在switch里,枚举成员使用缩写.hearts来引用,因为self的值已经知道是一个suit","hello","help","here","here’","hexadecimaldoubl","hexadecimalinteg","hierarchi","highland","hors","if和let来处理值缺失的情况。有些变量的值是可选的。一个可选的值可能是一个具体的值或者是nil","if和switch来进行条件操作,使用for-in、for、while和do-whil","if语句中,条件必须是一个布尔表达式——这意味着像if","imagin","implement","implicitdoubl","implicitinteg","import","in-out参数交换a和b的值,这两个参数被描述为[in-out类型参数][1","increment","increment(7","incrementby(amount","incrementbyseven","incrementbysevn","incrementbyten","incrementor","index","indic","individualscor","inform","init(nam","init(s","init(sidelength","initi","inout","inspir","instruct","int","int(pi","int8","int8.max","int8类型的常量或者变量可以存储的数字范围是-128~127,uint8类型的常量或者变量能存储的数字范围是0~255","integerpi","interestingnumb","interpolation)的方式把常量名或者变量名当做占位符加入到长字符串中,swift会用当前常量或变量的值替换这些占位符。将常量或变量名放入反斜杠符加一对圆括号中"\\()"","intstack","intstack指定了container的实现,适用的itemtype被用作int类型。对于这个contain","intstack类型只能用于int值,不过,其对于定义一个泛型stack","intstack类型实现了container协议的所有三个要求,在intstack","intstack类型的非泛型版本,适用于遵循contain","intuint","int就够了。这可以提高代码一致性和可复用性。即使是在32位平台上,int可以存储的整数范围也可以达到-2147483648~2147483647","int是整型;double和float是浮点型;bool是布尔型;string是字符串。swift","int类型更大或者更小的数字。swift","int索引值下标可以检索到每一个item","int这一行,一切仍旧可以工作,因为它清楚的知道itemtyp","int,将抽象的itemtype类型转换为具体的int","io","isempti","item","items.append(item","items.count","items.removelast","items[i","items。这个需求通过一个类型约束和wher","items的属性,使用空的t","itemtyp","itemtype。th","item是如何存储的或何种类型是允许的。这个协议只指定三个任何遵循contain","item的push方法,该参数必须是t","jack","john","justoveronemillion","kayle","kei","keytyp","kind","king","knowledg","koala","label","lambda","languag","languagenam","larger","largest","last","lawrence'","left","length","lessthanten","lessthanten(numb","let来声明常量,使用var","let来声明常量,用var","lh","lhsitem","librari","library'","line","list","liter","llama","log","look","loop","lot","lowercasestr","m","made","main","make","makeincrement","makeincrementor","makeincrementor(forincr","malcolm","manag","mansion","map","match","maximumnumberofloginattempt","maximumnumberofloginattempts或者welcomemessage)和一个指定类型的值(比如数字10或者字符串hello","maximumnumberofloginattempts的新常量,并给它一个值10。然后,声明一个名字是currentloginattempt的变量并将它的值初始化为0","maxvalu","meaningoflif","mechan","messag","method","minvalu","min和max","model","more","morn","multilin","multipl","multipli","mutat","myconst","myvari","myvariable是一个整数(integ","n","name","namedshap","namedshape的另一个子类circle,构造器接收两个参数,一个是半径一个是名称,实现area和describ","navig","need","nest","newvalu","newvalue.sidelength","newvalue。你可以在set","nil","nil,?后面的东西都会被忽略,并且整个表达式返回nil","nil,条件会判断为false,大括号中的代码会被跳过。如果不是nil,会将值赋给let","nine","nn","nnnn","nnnnnnnn","none","normal","normal.lowercasestr","normal.uppercasestr","note","noth","now","nsmutablestr","nsstring","number","numberofsid","numberoftim","numbers.map","o","objc","objective-c","occup","occupations[\"jayn","octalinteg","on","onemillion","onesix","oper","opt","option","optionalnam","optionalname改成nil,greeting会是什么?添加一个else语句,当optionalname是nil时给greet","optionalsquar","optionalsquare?.sidelength","optionalstr","optionalvalue(item","report","result","result(str","result(sunris","return","returnfifteen","returntyp","return参数名称缩写运算符函数trail","revers","rh","rhsitem","romeoandjuliet","room","runingtot","runningtot","s1","s2","s2),backward","same","samequot","sandwich","sayhello(personnam","sayhelloagain(personnam","sayhello。上面的例子展示的是用"anna"和"brian"","sayhello函数时,在圆括号中传给它一个string类型的实参。因为这个函数返回一个string类型的值,sayhello可以被包含在println","sayhello的函数体中,先定义了一个新的名为greeting的string常量,同时赋值了给personname的一个简单问候消息。然后用return关键字把这个问候返回出去。一旦return","scalar","scene","scene.hasprefix(\"act","score","second","secondforloop","see","self","self.nam","self.push(item","self.sidelength","self.toraw","self被用来区别实例变量。当你创建实例的时候,像传入函数参数一样给类传入构造器的参数。每个属性都需要赋值——无论是通过声明(就像numberofsides)还是通过构造器(就像nam","sequenc","serverrespons","serverresponse.error(\"out","serverresponse.result(\"6:00","serverresponse和switch","set","setter","setter-claus","setter-clause­opt","seven","shape","shape.numberofsid","shape.simpledescript","shapedescript","shape类缺少了一些重要的东西:一个构造函数来初始化类实例。使用init","shoppinglist","shoppinglist[1","shouti","side","sidelength","simpl","simpleclass","simpledescript","simplestructur","simplestructure时候mutating关键字用来标记一个会修改结构体的方法。simpleclass","six","size","snail","some(100","some(t","someclass","somecontain","somecontainer.count","somecontainer[i","somecontainer中item","somecontainer中的item","somecontainer和anothercontainer。somecontainer参数是类型c1,anothercontainer参数是类型c2。c1和c2","somecontainer和anothercontainer包含相同的item","somecontainer是一个c1","somefunction(somet","somestr","sometype(ofinitialvalu","someu","sort","sort([1","sort(nam","soup","spade","sparklingheart","spici","squar","square(sidelength","square.sidelength","stack","stack(栈)。一个栈是一系列值域的集合,和array(数组)相似,但其是一个比swift的array类型更多限制的集合。一个数组可以允许其里面任何位置的插入/删除操作,而栈,只允许,只允许在集合的末端添加新的项(如同push一个新值进栈)。同样的一个栈也只能从末端移除项(如同pop","stack(inout","swaptwovalues例子中,节点类型t是一种类型参数的示例。类型参数指定并命名为一个节点类型,并且紧随在函数名后面,并用一对尖括号括起来(如)。这个尖括号告诉swift那个t是swaptwovalues函数所定义的一个节点类型。因为t是一个节点,swift不会去查找每一个命名为t","t.generatortype.el","tast","tea","teamscor","temporarya","ten","terminolog","terrapin","test","test.area","test.simpledescript","theaceofspad","theaceofspades.descript","three","threedescript","threeofspad","threeofspades.simpledescript","threeofspadesdescript","three的值被用来创建一个doubl","time","todai","toobig","toraw和fromraw","touch","trail","tre","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","true","tuesdai","tulip","tupl","two","twothousand","twothousandandon","twothousand类型是uint16,然而常量one类型是uint8。它们不能直接相加,因为它们类型不同。所以要调用uint16(one)来创建一个新的uint16数字并用on","type","type-saf","typealia","types中知道结构体有默认的成员构造函数,所以你可以用默认的initializer去初始化新的常量theaceofspad","t分别代表tnt和string","t定义了一个名为“某种类型t”的节点提供给后来用。这种将来类型可以在结构体的定义里任何地方表示为“t”。在这种情况下,t","t来表示)来代替实际类型名(如int、string或double)。节点类型名并不是表示t必须是任何类型,但是其规定a和b必须是同一类型的t,而不管t表示任何类型。只有swaptwovalues函数在每次调用时所传入的实际类型决定了t","t被用作append方法的item参数和下标的返回类型。swift因此可以推断出被用作这个特定容器的itemtype的t","t,有一个需要t必须是someclass子类的类型约束;第二个类型参数u,有一个需要u必须遵循someprotocol","u","u+0024","u+0061","u+1f436","u+1f496","u+2665","u+d83d","u+dc36","u.generatortype.el","u0001f496","u2665","uin8","uinavigationcontrol","uint","uint16","uint16(on","uint16有一个构造器,可以接受一个uint8类型的值,所以这个构造器可以用现有的uint8来创建一个新的uint16。注意,你并不能传入任意类型的值,只能传入uint16","uint16,可以进行相加。目标常量twothousandandone的类型被推测为uint16,因为它是两个uint16","uint32","uint8","uint8.max","uint8.min","uint,除非你真的需要存储一个和当前平台原生字长相同的无符号整数。除了这种情况,最好使用int,即使你要存储的值已知是非负的。统一使用int","uncom","undefinedundefin","unicod","unicodescalar","unicodescalarview","unnnn","unnnnnnnn","uno","unusualmenageri","uppercamelcas","uppercasestr","us","utf-16","utf-8","utf-8utf-16unicod","utf16","utf16count","utf16view","utf8","utf8view","valu","values(first","valuetofind","valuetofind”。不是所有的swift中的类型都可以用等式符(==)进行比较。例如,如果你创建一个你自己的类或结构体来表示一个复杂的数据模型,那么swift没法猜到对于这个类或结构体而言“等于”的意思。正因如此,这部分代码不能可能保证工作于每个可能的类型t","var","variabl","variablestr","veget","vegetablecom","veri","verona","view","water","watercress","we'r","welcom","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","whenev","where语句作为一个类型参数队列的一部分。一个where语句使你能够要求一个关联类型遵循一个特定的协议,以及(或)那个特定的类型参数和关联类型可以是相同的。你可写一个where语句,通过紧随放置wher","where语句的一部分,写在关键字wher","where,只在冒号后面写接口或者类名。<t","whisper","width","widthlabel","willset","willset和didset","wiseword","work","world","world"","written","wwdc","x","x.hassuffix(\"pepp","x24","xcode","xnn","y","yensign","z","zero"],"pipeline":["trimmer","stopWordFilter","stemmer"]} \ No newline at end of file +{"version":"0.5.2","fields":[{"name":"title","boost":10},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"index.html#gitbook_165":["2014","languag","program","swift","undefinedundefin","wwdc"],"chapter1/01_swift.html#gitbook_166":["arc","automat","c","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","count","c的兼容性的限制。swift","foundat","hello","io","objective-c","os","refer","swift","touch","undefinedundefin","world","x"],"chapter1/02_a_swift_tour.html#gitbook_167":["0","0..3","0..time","0.0","1","10","100","103","11","12","13","16","19","2","2.5","20","25","3","3.0","3.1","3.59","3.69","3.79","4","42","43","5","5.2","50","597","69105","7","7.simpledescript","70","70.0","75","8","87","8:09","9","9.9","94","a.adjust","a.simpledescript","ac","ace.toraw","acerawvalu","add","addon","addone(numb","adescript","adjust","amount","anoth","anotherproperti","ant","anycommonel","anycommonelements([1","appl","applese","applesummari","area","b","b.adjust","b.simpledescript","bdescript","blue","bool","bottl","c","captain","card","card(rank","card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit","case","catfish","celeri","chees","class","club","condit","condition(item","convertedrank","convertedrank.simpledescript","count","counter","counter.incrementby(2","cucumb","dai","default","deinit","diamond","dictionary(item","result","result(str","result(sunris","return","returnfifteen","rh","rhsitem","sandwich","score","secondforloop","see","self","self.nam","self.sidelength","self被用来区别实例变量。当你创建实例的时候,像传入函数参数一样给类传入构造器的参数。每个属性都需要赋值——无论是通过声明(就像numberofsides)还是通过构造器(就像nam","sequenc","serverrespons","serverresponse.error(\"out","serverresponse.result(\"6:00","serverresponse和switch","set","setter","seven","shape","shape.numberofsid","shape.simpledescript","shapedescript","shape类缺少了一些重要的东西:一个构造函数来初始化类实例。使用init","shoppinglist","shoppinglist[1","side","sidelength","simpl","simpleclass","simpledescript","simplestructur","simplestructure时候mutating关键字用来标记一个会修改结构体的方法。simpleclass","six","size","some(100","some(t","sort([1","soup","spade","spici","squar","square(sidelength","square.sidelength","standard","string","string(self.toraw","string(width","struct","structur","success","suit","suit.heart","suit.simpledescript","suit添加一个color方法,对spades和clubs返回“black”,对hearts和diamonds返回“r","sum","sumof","sumof(42","sumof(numb","sunris","sunset","super.init(nam","swift","switch","switch中匹配到的子句之后,程序会退出switch语句,并不会继续向下运行,所以不需要在每个子句结尾写break","t","t.generatortype.el","tast","tea","teamscor","ten","test","test.area","test.simpledescript","three","threedescript","threeofspad","threeofspades.simpledescript","threeofspadesdescript","time","todai","toraw和fromraw","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","true","tuesdai","tulip","two","type","u","u.generatortype.el","uncom","undefinedundefin","var","veget","vegetablecom","veri","water","watercress","where,只在冒号后面写接口或者类名。<t","width","widthlabel","willset","willset和didset","world","x","x.hassuffix(\"pepp","xcode","y"],"chapter1/chapter1.html#gitbook_168":["swift","undefinedundefin"],"chapter2/01_The_Basics.html#gitbook_170":["0","0.0","0.0125","0.14159","000123.456","0b","0b10001","0o","0o21","0x","0x11","0xc.3p0","0xfp-2","0xfp2","0x)。小数点两边必须有至少一个十进制数字(或者是十六进制的数字)。浮点原始值还有一个可选的指数,在十进制浮点数中通过大写或者小写的e来指定,在十六进制浮点数中通过大写或者小写的p","0为fals","0为true的时候代码运行才会继续,也就是说,当age的值非负的时候。如果age的值是负数,就像代码中那样,ag","1","1.21875e1","1.25","1.25e-2","1.25e2","10","10^-2","10^2","12.1875","123","125.0","15","17","1_000_000","1_000_000.000_000_1","1的比较结果是bool类型,所以第二个例子可以通过类型检查。类似i","200","255","2^-2","2^2","2_000","3","3.14159","3.14159,0.1和-273.15","3.75","32位平台上,int和int32","32位平台上,uint和uint32","3可以直接和原始值0.14159","3没有显式声明类型,而表达式中出现了一个浮点原始值,所以表达式会被推测为doubl","4.75会变成4,-3.9会变成3","404","42","42和-23","42和3.14159","42并且没有标明类型,swift","60.0","64位平台上,int和int64","64位平台上,uint和uint64","8、16、32和64","8位无符号整数类型是uint8,32位有符号整数类型是int32","_","actualnumb","actualnumber常量可以在if语句的第一个分支中使用。它已经被可选包含的值初始化过,所以不需要再使用!后缀来获取它的值。在这个例子中,actualnumb","ag","anotherpi","array和dictionari","assert(ag","assert函数来写一个断言。给assert函数传入一个结果为true或者false的表达式以及一条信息,当表达式为fals","assumedstr","audiosampl","audiosample.min","audiosample被定义为uint16的一个别名。因为它是别名,audiosample.min实际上是uint16.min,所以会给maxamplitudefound赋一个初值0","binaryinteg","bonjour","bool","bool。布尔值是指逻辑,因为它们只能是真或者假。swift","bool类型的地方使用了非布尔值,swift","c","cannotbeneg","cat","chang","cocoa里的nslog函数一样,println","code","comment","compile-tim","constantnam","convert","convertednumb","current","currentloginattempt","decimaldoubl","decimalinteg","definitestr","descript","dogcow","doubl","double(thre","double或者float","double精确度很高,至少有15位数字,而float最少只有6","double而不是float","double表示64","end","error","eww","exponentdoubl","exp,那这个数相当于基数和10^exp","exp,那这个数相当于基数和2^exp","fals","first","float表示32","found","found"","found")元组把一个int值和一个str","friendlywelcom","friendlywelcome的值从"hello!"改为了"bonjour!"","gt","hello","hexadecimaldoubl","hexadecimalinteg","horribl","http","http200statu","http200status.descript","http200status.statuscod","http404error","http404error.0","http404error.1","if和while语句中来对可选的值进行判断并把值赋给一个常量或者变量。if和whil","if语句来判断一个可选是否包含值。如果可选有值,结果是true;如果没有值,结果是fals","if语句的第一个分支中操作actualnumber的值,你可以改成if","implicitli","int","int(pi","int)或者(str","int8","int8.max","int8类型的常量或者变量可以存储的数字范围是-128~127,uint8类型的常量或者变量能存储的数字范围是0~255","integ","integerpi","interpolation)的方式把常量名或者变量名当做占位符加入到长字符串中,swift会用当前常量或变量的值替换这些占位符。将常量或变量名放入反斜杠符加一对圆括号中"\\()"","intuint浮点数类型安全和类型推测数值类原始值数值类型转换整数转换整数和浮点数转换类型别名布尔值元组可选if","int就够了。这可以提高代码一致性和可复用性。即使是在32位平台上,int可以存储的整数范围也可以达到-2147483648~2147483647","int是整型;double和float是浮点型;bool是布尔型;string是字符串。swift","int类型更大或者更小的数字。swift","io","justoveronemillion","justthestatuscod","languagenam","less","let来声明常量,用var","line","maxamplitudefound","maximumnumberofloginattempt","maximumnumberofloginattempts或者welcomemessage)和一个指定类型的值(比如数字10或者字符串hello","maximumnumberofloginattempts的新常量,并给它一个值10。然后,声明一个名字是currentloginattempt的变量并将它的值初始化为0","maxvalu","meaningoflif","messag","minvalu","min和max","multilin","multipl","nest","nil","nil不是指针——它是一个确定的值,用来表示值缺失。任何类型的可选都可以被设置为nil","nil的话请不要使用隐式解析可选。如果你需要在变量的生命周期中判断是否是nil","nil,nil","nil,但是后面的代码运行需要一个非nil","now","nsnotfound)来暗示值缺失。这种方法假设方法的调用者知道并记得对特殊值进行判断。然而,swift","objc","objective-c","octalinteg","ok","on","onemillion","option","orangesareorang","orangesareorange和turnipsaredelicious的类型会被推测为bool,因为它们的初值是布尔原始值。就像之前提到的int和double一样,如果你创建变量的时候给它们赋值true或者false,那你不需要给常量或者变量标明bool","os","over","paddeddoubl","person'","pi","pointonefouronefivenin","possiblenumb","possiblenumber.toint","possiblenumber.toint返回的可选int包含一个值,创建一个叫做actualnumb","possiblestr","print","println","println(\"\\(possiblenumb","println(\"eww","println(\"mmm","println(\"th","println(\"thi","println(assumedstr","println(cat","println(definitestr","println(friendlywelcom","println(possiblestr","println函数输出传入的str","println是一个用来输出的全局函数,输出的内容会在最后带换行。如果你用xcode,println将会输出内容到“console”面板上。(另一种函数叫print","properti","quot;an","quot;not","refer","second","serverresponsecod","someopt","sometype(ofinitialvalu","start","statement","statu","statuscod","statusmessag","string","string."","string”的意思是“可以存储任意str","string和隐式解析可选str","string类型有一个叫做toint的方法,作用是将一个string值转换成一个int值。然而,并不是所有的字符串都可以转换成一个整数。字符串"123"可以被转换成数字123,但是字符串"hello","string,你绝对不可能不小心传进去一个int","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","subscript","surveyansw","swift","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","swift用字符串插值(str","tasti","three","three的值被用来创建一个doubl","toint方法可能会失败,所以它返回一个可选的int,而不是一个int。一个可选的int被写作int?而不是int。问号暗示包含的值是可选,也就是说可能包含int值也可能不包含值。(不能包含其他任何值比如bool值或者string值。只能是int","toint方法来尝试将一个string转换成int","toobig","true","true。从字面意思来说,断言“断言”一个条件是否为真。你可以使用断言来保证在运行其他代码之前,某些重要的条件已经被满足。如果条件判断为true,代码运行会继续进行;如果条件判断为fals","true和fals","tupl","turnip","turnipsaredelici","twothousand","twothousandandon","twothousand类型是uint16,然而常量one类型是uint8。它们不能直接相加,因为它们类型不同。所以要调用uint16(one)来创建一个新的uint16数字并用on","typealia","uint","uint16","uint16(on","uint16有一个构造器,可以接受一个uint8类型的值,所以这个构造器可以用现有的uint8来创建一个新的uint16。注意,你并不能传入任意类型的值,只能传入uint16","uint16,可以进行相加。目标常量twothousandandone的类型被推测为uint16,因为它是两个uint16","uint8","uint8.max","uint8.min","uint,除非你真的需要存储一个和当前平台原生字长相同的无符号整数。除了这种情况,最好使用int,即使你要存储的值已知是非负的。统一使用int","undefinedundefin","unicod","unown","unwrap","valu","var","web","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","world"","written","x","xcode","y","z","zero"],"chapter2/03_Strings_and_Characters.html#gitbook_171":["0","1","10","103","111","128054","128054,是一个十六进制1f436","144","159","16","182","2","2.5","21","240","3","33","39","4","40","5","55357","56374","6","68","7.5","8","act","act1scenecount","alik","anoth","anotheremptystr","api","ascii","blackheart","boolean","c","capulet'","carriag","cell","charact","character1","character2","characterpluscharact","characterplusstr","characters)字符串字面量初始化空字符串字符串可变性字符串是值类型使用字符(characters)计算字符数量连接字符串和字符字符串插值比较字符串字符串相等前缀/后缀相等大写和小写字符串unicodeunicod","cocoa","codeunit","compile-tim","consid","constantstr","countel","countelements(unusualmenageri","d","dog","dogstr","dogstring.unicodescalar","dogstring.utf16","dogstring.utf8","dollarsign","dollarsign、blackheart","double(multipli","dromedari","einstein","empti","emptystr","emptystring.isempti","enumer","equal","error","for-in","foundat","friar","g","good","great","hall","hasprefix","hasprefix/hassuffix","hello","help","here","highland","hors","imagin","import","initi","instruct","isempti","knowledg","koala","lawrence'","length","liter","look","loop","lot","lowercasestr","mansion","messag","more","morn","multipli","n","nn","nnnn","nnnnnnnn","normal","normal.lowercasestr","normal.uppercasestr","noth","nsmutablestr","nsstring","o","objective-c","orchard","outsid","over","penguin","place","pleas","print","print(\"\\(codeunit","print(\"\\(scalar.valu","print(\"\\n","println(\"\\(scalar","println(\"noth","println(\"ther","println(\"thes","println(\"unusualmenageri","println(charact","public","quot","quot;a"),u+1f425","quot;albatross"","quot;hello","quot;🐥"","quotat","r","romeoandjuliet","room","samequot","scalar","scene","scene.hasprefix(\"act","see","shouti","snail","somestr","sparklingheart","street","string","string1","string2","stringpluscharact","stringplusstr","structur","swift","syntax","t","terminolog","time","touch","two","type","u+0024","u+0061","u+1f436","u+1f496","u+2665","u+d83d","u+dc36","u0001f496","u2665","uin8","uint16","uint32","uint8","undefinedundefin","unicod","unicodescalar","unicodescalarview","unnnn","unnnnnnnn","unusualmenageri","uppercasestr","us","utf-16","utf-8","utf-8utf-16unicod","utf16","utf16count","utf16view","utf8","utf8view","valu","var","variablestr","verona","we'r","welcom","whisper","wiseword","work","world"","x24","xnn","yensign"],"chapter2/06_Functions.html#gitbook_174":["again","anna","argument","brian","func","function","func作为前缀。指定函数返回类型时,用返回箭头->","greet","greeting被调用,该函数结束它的执行并返回greet","hello","paramet","personnam","print","println(sayhello(\"anna","println(sayhello(\"brian","println(sayhelloagain(\"anna","quot;greetingforperson",之所以叫这个名字是因为这个函数用一个人的名字当做输入,并返回给这个人的问候语。为了完成这个任务,你定义一个输入参数-一个叫做personname的string值,和一个包含给这个人问候语的str","return","sayhello(personnam","sayhelloagain(personnam","sayhello。上面的例子展示的是用"anna"和"brian"","sayhello函数时,在圆括号中传给它一个string类型的实参。因为这个函数返回一个string类型的值,sayhello可以被包含在println","sayhello的函数体中,先定义了一个新的名为greeting的string常量,同时赋值了给personname的一个简单问候消息。然后用return关键字把这个问候返回出去。一旦return","string","swift","swift统一的函数语法足够灵活,可以用来表示任何函数,包括从最简单的没有参数名字的c风格函数,到复杂的带局部和外部参数名的objective-c","undefinedundefin"],"chapter2/07_Closures.html#gitbook_175":["0","0,$1,$2","0,这时闭包会将字符串输出,而map","1","10","10中,如果number为16,则返回6,58返回8,510返回0","16","16,58,510","16变成了1,58变成了5,510变成了51","2","20","3","30","4","40","5","50","510","58","6","7","8","9","alex","alsoincrementbyten","amount","arrai","b","backward","backwards(s1","barri","block","bool","c","captur","caputur","chri","closur","constant","cycl","daniella","digitnam","digitnames[numb","eight","equal","ewa","five","fiveeight","fiveonezero","force-unwrap","forincr","four","func","function","gt","incrementbyseven","incrementbysevn","incrementbyten","incrementor","inout","int","kei","lambda","makeincrementor","makeincrementor(forincr","map","name","nine","note","number","numbers.map","objective-c","on","onesix","oper","option","output","paramet","quot;a"","quot;alex"","quot;b"","quot;barry"","quot;fiveeight"","quot;fiveonezero"","quot;onesix"","quot;tim"","quot;tom"","quot;大于"","quot;按照字母顺序后出现"","refer","return","returntyp","return参数名称缩写运算符函数trail","revers","runingtot","runningtot","s1","s2","s2),backward","seven","six","somefunctionthattakesaclosur","somefunctionthattakesaclosure(closur","sort","sort(nam","statement","string","strong","swift","three","trail","true","two","type","undefinedundefin","valu","var","variabl","zero"],"chapter2/09_Classes_and_Structures.html#gitbook_177":["undefinedundefin"],"chapter2/16_Automatic_Reference_Counting.html#gitbook_184":["arc","arc为了能帮助你管理内存,需要更多的关于你的代码之间关系的信息。本章描述了这些情况,并且为你示范怎样启用arc","arc会分配一大块内存用来储存实例的信息。内存中会包含实例的类型信息,以及这个实例所有相关属性的值。此外,当实例不再被使用时,arc","arc会跟踪和计算每一个类实例正在被多少属性,常量和变量所引用。哪怕实例的引用数为一,arc","swift使用自动引用计数(arc)这一机制来跟踪和管理你的应用程序的内存。通常情况下,swift的内存管理机制会一直起着作用,你无须自己来考虑内存的管理。arc","undefinedundefin"],"chapter2/19_Nested_Types.html#gitbook_188":["1","10","11","2","ac","blackjackcard","blackjackcard(rank","blackjackcard(二十一点),用来模拟blackjackcard中的扑克牌点数。blackjackcard结构体包含2个嵌套定义的枚举类型suit","blackjackcard.suit.hearts.toraw","blackjackcard是一个没有自定义构造函数的结构体,在memberwis","blackjackcard结构体自身有两个属性—rank与suit,也同样定义了一个计算属性description,description属性用rank和suit的中内容来构建对这张扑克牌名字和数值的描述,并用可选类型second","blackjackcard规则中,ace牌可以表示1或者11,ace牌的这一特征用一个嵌套在枚举型rank的结构体valu","case","charact","club","default","descript","diamond","eight","enum","first","five","four","heart","heartssymbol","initi","int","jack","king","nil","nine","option","output","println(\"theaceofspad","queen","rank","rank.values.first","rank.values.second","rank和suit嵌套在blackjackcard中,但仍可被引用,所以在初始化实例时能够通过枚举类型中的成员名称单独引用。在上面的例子中description属性能正确得输出对ace牌有1和11","rank在自己内部定义了一个嵌套结构体values。这个结构体包含两个变量,只有ace有两个数值,其余牌都只有一个数值。结构体valu","rank定义了一个计算属性values,这个计算属性会根据牌的面值,用适当的数值去初始化values实例,并赋值给values。对于j,q,k,ace会使用特殊数值,对于数字面值的牌使用int","rank用来描述扑克牌从ace~10,j,q,k,13张牌,并分别用一个int类型的值表示牌的面值。(这个int类型的值不适用于ace,j,q,k","return","second","self","self.toraw","seven","six","spade","string","struct","structur","suit","suit.toraw","suit用来描述扑克牌的四种花色,并分别用一个charact","swift","switch","ten","theaceofspad","theaceofspades.descript","three","two","types中知道结构体有默认的成员构造函数,所以你可以用默认的initializer去初始化新的常量theaceofspad","undefinedundefin","valu","values(first","var"],"chapter2/22_Generics.html#gitbook_190":["0..somecontainer.count","0.1","0.25","107","2","3","4","4个string","9.3","abov","action","ad","add","adopt","alia","allitemsmatch","allitemsmatch(stackofstr","allitemsmatch的泛型函数,用来检查是否两个container单例包含具有相同顺序的相同items。如果匹配到所有的items,那么返回一个为true的boolean","allitemsmatch首先检查两个容器是否拥有同样数目的items,如果他们的items数目不同,没有办法进行匹配,函数就会fals","allow","alwai","andrea","anothercontain","anothercontainer.count","anothercontainer[i","anothercontainer中的item","anothercontainer是一个c2","anotherint","anotherstr","app","append(item","append方法添加一个新item","approach","arrai","arrayofstr","array性质的items存储值。stack提供两个方法:push和pop,从栈中压进一个值和移除一个值。这些方法标记为可变的,因为他们需要修改(或转换)结构体的item","attempt","automat","avail","b","behavior","bodi","bool","bool)默认都是hash","both","c1","c1.itemtyp","c1必须遵循contain","c1的itemtype同样是c2的itemtyp","c1的itemtype必须遵循equat","c2","c2.itemtyp","c2必须遵循contain","call","cat","check","class","code","collect","compile-tim","concept","conform","constraints][8","contain","container协议声明了一个itemtype的关联类型,写作typealia","container协议的例子,定义了一个itemtyp","container协议的泛型stack","container协议的类型必须指定存储在其里面的值类型,必须保证只有正确类型的items可以加进容器里,必须明确可以通过其下标返回item","container协议需要一个方法指定容器里的元素将会保留,而不需要知道特定容器的类型。container协议需要指定任何通过append","control","count","count属性获取容器里items的数量,并返回一个int","cuatro","defin","dictionary的key上,当然其key类型必须遵循hashable协议(swift标准库中定义的一个特定协议)。所有的swift基本类型(如string,int","do","dog","doubl","doubleindex","each","enumerate(arrai","equal","equat","equatable>(arrai","equatable类型都可以安全的使用在findindex函数中,因为其保证支持等式操作。为了说明这个事实,当你定义一个函数时,你可以写一个equat","equatable,也就意味着“任何t类型都遵循equat","equival","error","exampl","exist","extens","extension][6","extension][7","fals","findindex([\"mik","findindex([3.14159","findindex(arrai","findindex中这个单个类型参数写做:t","findindex函数现在则可以成功的编译过,并且作用于任何遵循equatable的类型,如double或str","findindex,用某个类型t","findstringindex","findstringindex(arrai","findstringindex(str","findstringindex的泛型版本findindex。请注意这个函数仍然返回int","findstringindex的非泛型函数,该函数功能是去查找包含一给定string值的数组。若查找到匹配的字符串,findstringindex函数返回该字符串在数组中的索引值(int),反之则返回nil","first","for-in循环和半闭区间操作(..)来迭代somecontainer中的所有items。对于每个item,函数检查是否somecontainer中的item不等于对应的anothercontainer中的item,如果这两个items不等,则这两个容器不匹配,返回fals","for—that","foundindex","fromthetop","func","function","gener","give","goe","guide,即便你没有实现它。例如:swift的array和dictionary类型都是泛型集。你可以创建一个int数组,也可创建一个string数组,或者甚至于可以是任何其他swift的类型数据数组。同样的,你也可以创建存储任何指定类型的字典(dictionari","hashtabl","hello","here","here’","hierarchi","implement","import","in-out参数交换a和b的值,这两个参数被描述为[in-out类型参数][1","index","indic","inform","inout","inspir","int","intstack","intstack指定了container的实现,适用的itemtype被用作int类型。对于这个contain","intstack类型只能用于int值,不过,其对于定义一个泛型stack","intstack类型实现了container协议的所有三个要求,在intstack","intstack类型的非泛型版本,适用于遵循contain","int索引值下标可以检索到每一个item","int这一行,一切仍旧可以工作,因为它清楚的知道itemtyp","int,将抽象的itemtype类型转换为具体的int","item","items.append(item","items.count","items.removelast","items[i","items。这个需求通过一个类型约束和wher","items的属性,使用空的t","itemtyp","itemtype。th","item是如何存储的或何种类型是允许的。这个协议只指定三个任何遵循contain","item的push方法,该参数必须是t","keytyp","languag","last","left","librari","llama","look","made","malcolm","manag","match","method","model","mutat","name","navig","need","nil","note","now","number","option","origin","out","pair","parakeet","paramet","parameters类型参数命名类型参数泛型类型类型约束类型约束语法类型约束行为关联类型关联类型行为扩展一个存在的类型为一指定关联类型wher","part","placehold","pop","popviewcontrolleranim","pop并移除值"cuatro"","pop方法的返回值,该返回值将是一个t","possibl","print","println(\"al","println(\"not","println(\"someint","println(\"th","protocol","provid","provide(这个协议不会定义itemtype是遵循类型所提供的何种信息的别名)。尽管如此,itemtype别名支持一种方法识别在一个容器里的items类型,以及定义一种使用在append方法和下标中的类型,以便保证任何期望的contain","push","push(item","push)/出栈(pop","pushviewcontroller:anim","remov","report","return","same","see","self.push(item","someclass","somecontain","somecontainer.count","somecontainer[i","somecontainer中item","somecontainer中的item","somecontainer和anothercontainer。somecontainer参数是类型c1,anothercontainer参数是类型c2。c1和c2","somecontainer和anothercontainer包含相同的item","somecontainer是一个c1","somefunction(somet","somestr","someu","stack","stack(栈)。一个栈是一系列值域的集合,和array(数组)相似,但其是一个比swift的array类型更多限制的集合。一个数组可以允许其里面任何位置的插入/删除操作,而栈,只允许,只允许在集合的末端添加新的项(如同push一个新值进栈)。同样的一个栈也只能从末端移除项(如同pop","stack(inout","swaptwovalues例子中,节点类型t是一种类型参数的示例。类型参数指定并命名为一个节点类型,并且紧随在函数名后面,并用一对尖括号括起来(如)。这个尖括号告诉swift那个t是swaptwovalues函数所定义的一个节点类型。因为t是一个节点,swift不会去查找每一个命名为t","temporarya","terrapin","three","tre","true","type","type-saf","typealia","t分别代表tnt和string","t定义了一个名为“某种类型t”的节点提供给后来用。这种将来类型可以在结构体的定义里任何地方表示为“t”。在这种情况下,t","t来表示)来代替实际类型名(如int、string或double)。节点类型名并不是表示t必须是任何类型,但是其规定a和b必须是同一类型的t,而不管t表示任何类型。只有swaptwovalues函数在每次调用时所传入的实际类型决定了t","t被用作append方法的item参数和下标的返回类型。swift因此可以推断出被用作这个特定容器的itemtype的t","t,有一个需要t必须是someclass子类的类型约束;第二个类型参数u,有一个需要u必须遵循someprotocol","u","uinavigationcontrol","undefinedundefin","uno","uppercamelcas","us","valu","valuetofind","valuetofind”。不是所有的swift中的类型都可以用等式符(==)进行比较。例如,如果你创建一个你自己的类或结构体来表示一个复杂的数据模型,那么swift没法猜到对于这个类或结构体而言“等于”的意思。正因如此,这部分代码不能可能保证工作于每个可能的类型t","var","variabl","view","whenev","where语句作为一个类型参数队列的一部分。一个where语句使你能够要求一个关联类型遵循一个特定的协议,以及(或)那个特定的类型参数和关联类型可以是相同的。你可写一个where语句,通过紧随放置wher","where语句的一部分,写在关键字wher","world"],"chapter2/chapter2.html#gitbook_194":["swift","undefinedundefin"],"chapter3/01_About_the_Language_Reference.html#gitbook_195":["block","getter-claus","getter-sett","getter-setter-block","getter-setter方法​​块可以由一个getter子句后跟一个可选的setter子句构成,用大括号括起来,或者由一个setter子句后跟一个gett","grammar","opt","setter-claus","setter-clause­opt","swift","swift语言相对小点,这是由于在swift代码中几乎无处不在的许多常见的的类型,函数以及运算符都由swift标准库来定义。虽然这些类型,函数和运算符不是swift","undefinedundefin"]},"length":14},"tokenStore":{"root":{"0":{"0":{"0":{"1":{"2":{"3":{"docs":{},".":{"4":{"5":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.01410105757931845},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.010752688172043012},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.018469656992084433}},".":{"0":{"1":{"2":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.005376344086021506}}},"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"2":{"5":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"docs":{}},"docs":{},".":{"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}},"b":{"1":{"0":{"0":{"0":{"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"o":{"2":{"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"x":{"1":{"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"c":{"docs":{},".":{"3":{"docs":{},"p":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}},"docs":{}}},"f":{"docs":{},"p":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{},"-":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}}},")":{"docs":{},"。":{"docs":{},"小":{"docs":{},"数":{"docs":{},"点":{"docs":{},"两":{"docs":{},"边":{"docs":{},"必":{"docs":{},"须":{"docs":{},"有":{"docs":{},"至":{"docs":{},"少":{"docs":{},"一":{"docs":{},"个":{"docs":{},"十":{"docs":{},"进":{"docs":{},"制":{"docs":{},"数":{"docs":{},"字":{"docs":{},"(":{"docs":{},"或":{"docs":{},"者":{"docs":{},"是":{"docs":{},"十":{"docs":{},"六":{"docs":{},"进":{"docs":{},"制":{"docs":{},"的":{"docs":{},"数":{"docs":{},"字":{"docs":{},")":{"docs":{},"。":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"还":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"指":{"docs":{},"数":{"docs":{},",":{"docs":{},"在":{"docs":{},"十":{"docs":{},"进":{"docs":{},"制":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"数":{"docs":{},"中":{"docs":{},"通":{"docs":{},"过":{"docs":{},"大":{"docs":{},"写":{"docs":{},"或":{"docs":{},"者":{"docs":{},"小":{"docs":{},"写":{"docs":{},"的":{"docs":{},"e":{"docs":{},"来":{"docs":{},"指":{"docs":{},"定":{"docs":{},",":{"docs":{},"在":{"docs":{},"十":{"docs":{},"六":{"docs":{},"进":{"docs":{},"制":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"数":{"docs":{},"中":{"docs":{},"通":{"docs":{},"过":{"docs":{},"大":{"docs":{},"写":{"docs":{},"或":{"docs":{},"者":{"docs":{},"小":{"docs":{},"写":{"docs":{},"的":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"代":{"docs":{},"码":{"docs":{},"运":{"docs":{},"行":{"docs":{},"才":{"docs":{},"会":{"docs":{},"继":{"docs":{},"续":{"docs":{},",":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},",":{"docs":{},"当":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"的":{"docs":{},"值":{"docs":{},"非":{"docs":{},"负":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"的":{"docs":{},"值":{"docs":{},"是":{"docs":{},"负":{"docs":{},"数":{"docs":{},",":{"docs":{},"就":{"docs":{},"像":{"docs":{},"代":{"docs":{},"码":{"docs":{},"中":{"docs":{},"那":{"docs":{},"样":{"docs":{},",":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"$":{"1":{"docs":{},",":{"docs":{},"$":{"2":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"docs":{}}}},"docs":{}}},",":{"docs":{},"这":{"docs":{},"时":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"会":{"docs":{},"将":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"输":{"docs":{},"出":{"docs":{},",":{"docs":{},"而":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}}}}}}}}}}},"1":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123}}},"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.011029411764705883}}},"7":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.023746701846965697},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}},"^":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{},"-":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}},"中":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"为":{"1":{"6":{"docs":{},",":{"docs":{},"则":{"docs":{},"返":{"docs":{},"回":{"6":{"docs":{},",":{"5":{"8":{"docs":{},"返":{"docs":{},"回":{"8":{"docs":{},",":{"5":{"1":{"0":{"docs":{},"返":{"docs":{},"回":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"docs":{}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}},"docs":{}},"docs":{}}},"docs":{}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"1":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.011029411764705883}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018}}},"2":{"3":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.008960573476702509}}},"5":{"docs":{},".":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}},"8":{"0":{"5":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},",":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"十":{"docs":{},"六":{"docs":{},"进":{"docs":{},"制":{"1":{"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483}},".":{"1":{"8":{"7":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"4":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}},"docs":{}},"5":{"9":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}},"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}},"6":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}},",":{"5":{"8":{"docs":{},",":{"5":{"1":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"变":{"docs":{},"成":{"docs":{},"了":{"1":{"docs":{},",":{"5":{"8":{"docs":{},"变":{"docs":{},"成":{"docs":{},"了":{"5":{"docs":{},",":{"5":{"1":{"0":{"docs":{},"变":{"docs":{},"成":{"docs":{},"了":{"5":{"1":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}},"docs":{}},"docs":{}}},"docs":{}}}}},"7":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.008960573476702509}}},"8":{"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}},"docs":{}},"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.009400705052878966},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.012544802867383513},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.01838235294117647},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.010554089709762533},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018}},".":{"2":{"1":{"8":{"7":{"5":{"docs":{},"e":{"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}},"e":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{},"-":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}}},"docs":{}},"docs":{}},"_":{"0":{"0":{"0":{"docs":{},"_":{"0":{"0":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},".":{"0":{"0":{"0":{"docs":{},"_":{"0":{"0":{"0":{"docs":{},"_":{"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"的":{"docs":{},"比":{"docs":{},"较":{"docs":{},"结":{"docs":{},"果":{"docs":{},"是":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"类":{"docs":{},"型":{"docs":{},"检":{"docs":{},"查":{"docs":{},"。":{"docs":{},"类":{"docs":{},"似":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"2":{"0":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}},"1":{"4":{"docs":{"index.html#gitbook_165":{"ref":"index.html#gitbook_165","tf":0.1111111111111111}}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.007352941176470588}}},"4":{"0":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}},"docs":{}},"5":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.009400705052878966},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.014705882352941176},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}},".":{"5":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.009191176470588236}}},"docs":{}},"^":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{},"-":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}},"_":{"0":{"0":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}},"docs":{}}},"3":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"2":{"docs":{},"位":{"docs":{},"平":{"docs":{},"台":{"docs":{},"上":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"3":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}}},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"3":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"3":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.011029411764705883}}},"9":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.011750881316098707},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.007168458781362007},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.007352941176470588},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.008968609865470852}},".":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}},"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.005376344086021506}},",":{"0":{"docs":{},".":{"1":{"docs":{},"和":{"docs":{},"-":{"2":{"7":{"3":{"docs":{},".":{"1":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"5":{"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}},"6":{"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}},"7":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"可":{"docs":{},"以":{"docs":{},"直":{"docs":{},"接":{"docs":{},"和":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"0":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}},"没":{"docs":{},"有":{"docs":{},"显":{"docs":{},"式":{"docs":{},"声":{"docs":{},"明":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"而":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"中":{"docs":{},"出":{"docs":{},"现":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"会":{"docs":{},"被":{"docs":{},"推":{"docs":{},"测":{"docs":{},"为":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"4":{"0":{"4":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.017921146953405017}}},"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"和":{"3":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{},"-":{"2":{"3":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}},"并":{"docs":{},"且":{"docs":{},"没":{"docs":{},"有":{"docs":{},"标":{"docs":{},"明":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}},"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},".":{"7":{"5":{"docs":{},"会":{"docs":{},"变":{"docs":{},"成":{"4":{"docs":{},",":{"docs":{},"-":{"3":{"docs":{},".":{"9":{"docs":{},"会":{"docs":{},"变":{"docs":{},"成":{"3":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}}}},"docs":{}}},"docs":{}}}},"docs":{}}}}},"docs":{}},"docs":{}},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}},"5":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"1":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"docs":{}},"5":{"3":{"5":{"7":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}},"docs":{}},"docs":{}},"docs":{}},"6":{"3":{"7":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}},"docs":{}},"docs":{}},"docs":{}},"8":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"9":{"7":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.005875440658049354},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}},".":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}}},"6":{"0":{"docs":{},".":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}},"4":{"docs":{},"位":{"docs":{},"平":{"docs":{},"台":{"docs":{},"上":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}}},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.011029411764705883}}},"9":{"1":{"0":{"5":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"7":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},".":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}}},"5":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.0079155672823219}},".":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}},"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"8":{"7":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}},":":{"0":{"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"、":{"1":{"6":{"docs":{},"、":{"3":{"2":{"docs":{},"和":{"6":{"4":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"位":{"docs":{},"无":{"docs":{},"符":{"docs":{},"号":{"docs":{},"整":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},",":{"3":{"2":{"docs":{},"位":{"docs":{},"有":{"docs":{},"符":{"docs":{},"号":{"docs":{},"整":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"3":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}},"9":{"4":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}},".":{"3":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}},"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}}},"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"index.html#gitbook_165":{"ref":"index.html#gitbook_165","tf":0.1111111111111111},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.005376344086021506}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483}}}}}}},"w":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}}},"m":{"docs":{},"b":{"docs":{},"d":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}}}}},"s":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"t":{"docs":{},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}},"f":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"n":{"docs":{},"e":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}},"o":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"o":{"docs":{},"k":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"p":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"index.html#gitbook_165":{"ref":"index.html#gitbook_165","tf":0.1111111111111111}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.008968609865470852}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"变":{"docs":{},"量":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},",":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"会":{"docs":{},"把":{"docs":{},"它":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"当":{"docs":{},"做":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"e":{"docs":{},"(":{"docs":{},"这":{"docs":{},"个":{"docs":{},"协":{"docs":{},"议":{"docs":{},"不":{"docs":{},"会":{"docs":{},"定":{"docs":{},"义":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"是":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"类":{"docs":{},"型":{"docs":{},"所":{"docs":{},"提":{"docs":{},"供":{"docs":{},"的":{"docs":{},"何":{"docs":{},"种":{"docs":{},"信":{"docs":{},"息":{"docs":{},"的":{"docs":{},"别":{"docs":{},"名":{"docs":{},")":{"docs":{},"。":{"docs":{},"尽":{"docs":{},"管":{"docs":{},"如":{"docs":{},"此":{"docs":{},",":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"别":{"docs":{},"名":{"docs":{},"支":{"docs":{},"持":{"docs":{},"一":{"docs":{},"种":{"docs":{},"方":{"docs":{},"法":{"docs":{},"识":{"docs":{},"别":{"docs":{},"在":{"docs":{},"一":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"种":{"docs":{},"使":{"docs":{},"用":{"docs":{},"在":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"和":{"docs":{},"下":{"docs":{},"标":{"docs":{},"中":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"以":{"docs":{},"便":{"docs":{},"保":{"docs":{},"证":{"docs":{},"任":{"docs":{},"何":{"docs":{},"期":{"docs":{},"望":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.007168458781362007},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415},"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.07142857142857142},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}},"l":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}},"\\":{"docs":{},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.007168458781362007}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}},"e":{"docs":{},"w":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}},"m":{"docs":{},"m":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.014336917562724014},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"h":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}},"u":{"docs":{},"n":{"docs":{},"u":{"docs":{},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"y":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"输":{"docs":{},"出":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"用":{"docs":{},"来":{"docs":{},"输":{"docs":{},"出":{"docs":{},"的":{"docs":{},"全":{"docs":{},"局":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"输":{"docs":{},"出":{"docs":{},"的":{"docs":{},"内":{"docs":{},"容":{"docs":{},"会":{"docs":{},"在":{"docs":{},"最":{"docs":{},"后":{"docs":{},"带":{"docs":{},"换":{"docs":{},"行":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"用":{"docs":{},"x":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},",":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"将":{"docs":{},"会":{"docs":{},"输":{"docs":{},"出":{"docs":{},"内":{"docs":{},"容":{"docs":{},"到":{"docs":{},"“":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"”":{"docs":{},"面":{"docs":{},"板":{"docs":{},"上":{"docs":{},"。":{"docs":{},"(":{"docs":{},"另":{"docs":{},"一":{"docs":{},"种":{"docs":{},"函":{"docs":{},"数":{"docs":{},"叫":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"\"":{"docs":{},"\\":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}}}},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"命":{"docs":{},"名":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"约":{"docs":{},"束":{"docs":{},"类":{"docs":{},"型":{"docs":{},"约":{"docs":{},"束":{"docs":{},"语":{"docs":{},"法":{"docs":{},"类":{"docs":{},"型":{"docs":{},"约":{"docs":{},"束":{"docs":{},"行":{"docs":{},"为":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"行":{"docs":{},"为":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"一":{"docs":{},"个":{"docs":{},"存":{"docs":{},"在":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"一":{"docs":{},"指":{"docs":{},"定":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":5}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}},"e":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.047619047619047616}}}}}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.007168458781362007}},"e":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"可":{"docs":{},"选":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},",":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"做":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.01046337817638266}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}},"并":{"docs":{},"移":{"docs":{},"除":{"docs":{},"值":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"该":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"将":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}},"s":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}}}}}}},")":{"docs":{},"/":{"docs":{},"出":{"docs":{},"栈":{"docs":{},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}}}}}},"s":{"1":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.03430079155672823}}},"2":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.03430079155672823}},")":{"docs":{},",":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}}}},"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"index.html#gitbook_165":{"ref":"index.html#gitbook_165","tf":10.444444444444445},"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":10.404761904761905},"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":10.00587544065805},"chapter1/chapter1.html#gitbook_168":{"ref":"chapter1/chapter1.html#gitbook_168","tf":10.75},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.06451612903225806},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.029411764705882353},"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.03430079155672823},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174},"chapter2/chapter2.html#gitbook_194":{"ref":"chapter2/chapter2.html#gitbook_194","tf":10.666666666666666},"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.08333333333333333}},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"这":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"详":{"docs":{},"情":{"docs":{},"参":{"docs":{},"见":{"docs":{},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"和":{"docs":{},"类":{"docs":{},"型":{"docs":{},"推":{"docs":{},"断":{"docs":{},"(":{"docs":{},"待":{"docs":{},"添":{"docs":{},"加":{"docs":{},"链":{"docs":{},"接":{"docs":{},")":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"没":{"docs":{},"有":{"docs":{},"给":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"插":{"docs":{},"值":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}},"统":{"docs":{},"一":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"语":{"docs":{},"法":{"docs":{},"足":{"docs":{},"够":{"docs":{},"灵":{"docs":{},"活":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"任":{"docs":{},"何":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"包":{"docs":{},"括":{"docs":{},"从":{"docs":{},"最":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"没":{"docs":{},"有":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"字":{"docs":{},"的":{"docs":{},"c":{"docs":{},"风":{"docs":{},"格":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"到":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"的":{"docs":{},"带":{"docs":{},"局":{"docs":{},"部":{"docs":{},"和":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"的":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"自":{"docs":{},"动":{"docs":{},"引":{"docs":{},"用":{"docs":{},"计":{"docs":{},"数":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},")":{"docs":{},"这":{"docs":{},"一":{"docs":{},"机":{"docs":{},"制":{"docs":{},"来":{"docs":{},"跟":{"docs":{},"踪":{"docs":{},"和":{"docs":{},"管":{"docs":{},"理":{"docs":{},"你":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"程":{"docs":{},"序":{"docs":{},"的":{"docs":{},"内":{"docs":{},"存":{"docs":{},"。":{"docs":{},"通":{"docs":{},"常":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"的":{"docs":{},"内":{"docs":{},"存":{"docs":{},"管":{"docs":{},"理":{"docs":{},"机":{"docs":{},"制":{"docs":{},"会":{"docs":{},"一":{"docs":{},"直":{"docs":{},"起":{"docs":{},"着":{"docs":{},"作":{"docs":{},"用":{"docs":{},",":{"docs":{},"你":{"docs":{},"无":{"docs":{},"须":{"docs":{},"自":{"docs":{},"己":{"docs":{},"来":{"docs":{},"考":{"docs":{},"虑":{"docs":{},"内":{"docs":{},"存":{"docs":{},"的":{"docs":{},"管":{"docs":{},"理":{"docs":{},"。":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_184":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_184","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"’":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"允":{"docs":{},"许":{"docs":{},"你":{"docs":{},"定":{"docs":{},"义":{"docs":{},"你":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"这":{"docs":{},"些":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"类":{"docs":{},"、":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"和":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"如":{"docs":{},"同":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},"类":{"docs":{},"型":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{},"另":{"docs":{},"外":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"值":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"自":{"docs":{},"己":{"docs":{},"写":{"docs":{},"字":{"docs":{},"典":{"docs":{},",":{"docs":{},"你":{"docs":{},"或":{"docs":{},"许":{"docs":{},"会":{"docs":{},"定":{"docs":{},"义":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"和":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"该":{"docs":{},"协":{"docs":{},"议":{"docs":{},"要":{"docs":{},"求":{"docs":{},"任":{"docs":{},"何":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"实":{"docs":{},"现":{"docs":{},"等":{"docs":{},"式":{"docs":{},"符":{"docs":{},"(":{"docs":{},"=":{"docs":{},"=":{"docs":{},")":{"docs":{},"和":{"docs":{},"不":{"docs":{},"等":{"docs":{},"符":{"docs":{},"(":{"docs":{},"!":{"docs":{},"=":{"docs":{},")":{"docs":{},"对":{"docs":{},"任":{"docs":{},"何":{"docs":{},"两":{"docs":{},"个":{"docs":{},"该":{"docs":{},"类":{"docs":{},"型":{"docs":{},"进":{"docs":{},"行":{"docs":{},"比":{"docs":{},"较":{"docs":{},"。":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"标":{"docs":{},"准":{"docs":{},"类":{"docs":{},"型":{"docs":{},"自":{"docs":{},"动":{"docs":{},"支":{"docs":{},"持":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"已":{"docs":{},"经":{"docs":{},"提":{"docs":{},"供":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"属":{"docs":{},"性":{"docs":{},"和":{"docs":{},"通":{"docs":{},"过":{"docs":{},"下":{"docs":{},"标":{"docs":{},"来":{"docs":{},"查":{"docs":{},"找":{"docs":{},"一":{"docs":{},"个":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},"。":{"docs":{},"这":{"docs":{},"三":{"docs":{},"个":{"docs":{},"功":{"docs":{},"能":{"docs":{},"都":{"docs":{},"达":{"docs":{},"到":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"要":{"docs":{},"求":{"docs":{},"。":{"docs":{},"也":{"docs":{},"就":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"去":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"通":{"docs":{},"过":{"docs":{},"简":{"docs":{},"单":{"docs":{},"声":{"docs":{},"明":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"适":{"docs":{},"用":{"docs":{},"于":{"docs":{},"该":{"docs":{},"协":{"docs":{},"议":{"docs":{},"而":{"docs":{},"已":{"docs":{},"。":{"docs":{},"如":{"docs":{},"何":{"docs":{},"实":{"docs":{},"践":{"docs":{},"这":{"docs":{},"样":{"docs":{},"一":{"docs":{},"个":{"docs":{},"空":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"在":{"docs":{},"[":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"对":{"docs":{},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"做":{"docs":{},"了":{"docs":{},"些":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"在":{"docs":{},"[":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"]":{"docs":{},"[":{"5":{"docs":{},"]":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},"中":{"docs":{},",":{"docs":{},"字":{"docs":{},"典":{"docs":{},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"有":{"docs":{},"一":{"docs":{},"种":{"docs":{},"方":{"docs":{},"法":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"其":{"docs":{},"是":{"docs":{},"唯":{"docs":{},"一":{"docs":{},"的":{"docs":{},"表":{"docs":{},"示":{"docs":{},"。":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"之":{"docs":{},"所":{"docs":{},"以":{"docs":{},"需":{"docs":{},"要":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"是":{"docs":{},"为":{"docs":{},"了":{"docs":{},"以":{"docs":{},"便":{"docs":{},"于":{"docs":{},"其":{"docs":{},"检":{"docs":{},"查":{"docs":{},"其":{"docs":{},"是":{"docs":{},"否":{"docs":{},"包":{"docs":{},"含":{"docs":{},"某":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"如":{"docs":{},"无":{"docs":{},"此":{"docs":{},"需":{"docs":{},"求":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"即":{"docs":{},"不":{"docs":{},"会":{"docs":{},"告":{"docs":{},"诉":{"docs":{},"是":{"docs":{},"否":{"docs":{},"插":{"docs":{},"入":{"docs":{},"或":{"docs":{},"者":{"docs":{},"替":{"docs":{},"换":{"docs":{},"了":{"docs":{},"某":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"也":{"docs":{},"不":{"docs":{},"能":{"docs":{},"查":{"docs":{},"找":{"docs":{},"到":{"docs":{},"已":{"docs":{},"经":{"docs":{},"存":{"docs":{},"储":{"docs":{},"在":{"docs":{},"字":{"docs":{},"典":{"docs":{},"里":{"docs":{},"面":{"docs":{},"的":{"docs":{},"给":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"考":{"docs":{},",":{"docs":{},"你":{"docs":{},"不":{"docs":{},"用":{"docs":{},"在":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"定":{"docs":{},"义":{"docs":{},"部":{"docs":{},"分":{"docs":{},"声":{"docs":{},"明":{"docs":{},"一":{"docs":{},"个":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"。":{"docs":{},"由":{"docs":{},"于":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"要":{"docs":{},"求":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"通":{"docs":{},"过":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"查":{"docs":{},"找":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"参":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"和":{"docs":{},"下":{"docs":{},"标":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"合":{"docs":{},"适":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"要":{"docs":{},"强":{"docs":{},"大":{"docs":{},"特":{"docs":{},"征":{"docs":{},"中":{"docs":{},"的":{"docs":{},"其":{"docs":{},"中":{"docs":{},"一":{"docs":{},"个":{"docs":{},",":{"docs":{},"许":{"docs":{},"多":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"代":{"docs":{},"码":{"docs":{},"构":{"docs":{},"建":{"docs":{},"出":{"docs":{},"来":{"docs":{},"的":{"docs":{},"。":{"docs":{},"事":{"docs":{},"实":{"docs":{},"上":{"docs":{},",":{"docs":{},"你":{"docs":{},"已":{"docs":{},"经":{"docs":{},"使":{"docs":{},"用":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"贯":{"docs":{},"穿":{"docs":{},"着":{"docs":{},"整":{"docs":{},"个":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"言":{"docs":{},"相":{"docs":{},"对":{"docs":{},"小":{"docs":{},"点":{"docs":{},",":{"docs":{},"这":{"docs":{},"是":{"docs":{},"由":{"docs":{},"于":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"代":{"docs":{},"码":{"docs":{},"中":{"docs":{},"几":{"docs":{},"乎":{"docs":{},"无":{"docs":{},"处":{"docs":{},"不":{"docs":{},"在":{"docs":{},"的":{"docs":{},"许":{"docs":{},"多":{"docs":{},"常":{"docs":{},"见":{"docs":{},"的":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"以":{"docs":{},"及":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"都":{"docs":{},"由":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"来":{"docs":{},"定":{"docs":{},"义":{"docs":{},"。":{"docs":{},"虽":{"docs":{},"然":{"docs":{},"这":{"docs":{},"些":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"和":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"不":{"docs":{},"是":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.005875440658049354},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}},"中":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"的":{"docs":{},"子":{"docs":{},"句":{"docs":{},"之":{"docs":{},"后":{"docs":{},",":{"docs":{},"程":{"docs":{},"序":{"docs":{},"会":{"docs":{},"退":{"docs":{},"出":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"并":{"docs":{},"不":{"docs":{},"会":{"docs":{},"继":{"docs":{},"续":{"docs":{},"向":{"docs":{},"下":{"docs":{},"运":{"docs":{},"行":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"每":{"docs":{},"个":{"docs":{},"子":{"docs":{},"句":{"docs":{},"结":{"docs":{},"尾":{"docs":{},"写":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}}},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"可":{"docs":{},"以":{"docs":{},"交":{"docs":{},"换":{"docs":{},"b":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"到":{"docs":{},"a":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"交":{"docs":{},"换":{"docs":{},"a":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"到":{"docs":{},"b":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"调":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"非":{"docs":{},"常":{"docs":{},"有":{"docs":{},"用":{"docs":{},"的":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"它":{"docs":{},"只":{"docs":{},"能":{"docs":{},"交":{"docs":{},"换":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"值":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"想":{"docs":{},"要":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"或":{"docs":{},"者":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"函":{"docs":{},"数":{"docs":{},"主":{"docs":{},"题":{"docs":{},"都":{"docs":{},"是":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},",":{"docs":{},"唯":{"docs":{},"一":{"docs":{},"不":{"docs":{},"同":{"docs":{},"之":{"docs":{},"处":{"docs":{},"就":{"docs":{},"在":{"docs":{},"于":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"不":{"docs":{},"同":{"docs":{},",":{"docs":{},"分":{"docs":{},"别":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}},"<":{"docs":{},"t":{"docs":{},">":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}}}}}},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{},"是":{"docs":{},"一":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"的":{"docs":{},"示":{"docs":{},"例":{"docs":{},"。":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"指":{"docs":{},"定":{"docs":{},"并":{"docs":{},"命":{"docs":{},"名":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"紧":{"docs":{},"随":{"docs":{},"在":{"docs":{},"函":{"docs":{},"数":{"docs":{},"名":{"docs":{},"后":{"docs":{},"面":{"docs":{},",":{"docs":{},"并":{"docs":{},"用":{"docs":{},"一":{"docs":{},"对":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"括":{"docs":{},"起":{"docs":{},"来":{"docs":{},"(":{"docs":{},"如":{"docs":{},"<":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{},")":{"docs":{},",":{"docs":{},"或":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"或":{"docs":{},"用":{"docs":{},"作":{"docs":{},"函":{"docs":{},"数":{"docs":{},"主":{"docs":{},"体":{"docs":{},"中":{"docs":{},"的":{"docs":{},"注":{"docs":{},"释":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"被":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"所":{"docs":{},"代":{"docs":{},"表":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"不":{"docs":{},"管":{"docs":{},"函":{"docs":{},"数":{"docs":{},"任":{"docs":{},"何":{"docs":{},"时":{"docs":{},"候":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"都":{"docs":{},"会":{"docs":{},"被":{"docs":{},"实":{"docs":{},"际":{"docs":{},"类":{"docs":{},"型":{"docs":{},"所":{"docs":{},"替":{"docs":{},"换":{"docs":{},"(":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"当":{"docs":{},"函":{"docs":{},"数":{"docs":{},"第":{"docs":{},"一":{"docs":{},"次":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"t":{"docs":{},"被":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"替":{"docs":{},"换":{"docs":{},",":{"docs":{},"第":{"docs":{},"二":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"被":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"主":{"docs":{},"体":{"docs":{},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"是":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"而":{"docs":{},"且":{"docs":{},",":{"docs":{},"只":{"docs":{},"在":{"docs":{},"第":{"docs":{},"一":{"docs":{},"行":{"docs":{},"稍":{"docs":{},"微":{"docs":{},"有":{"docs":{},"那":{"docs":{},"么":{"docs":{},"一":{"docs":{},"点":{"docs":{},"点":{"docs":{},"不":{"docs":{},"同":{"docs":{},"于":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"除":{"docs":{},"了":{"docs":{},"只":{"docs":{},"要":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"两":{"docs":{},"个":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},"值":{"docs":{},"是":{"docs":{},"同":{"docs":{},"一":{"docs":{},"类":{"docs":{},"型":{"docs":{},"外":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"作":{"docs":{},"为":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{},"每":{"docs":{},"次":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"或":{"docs":{},"一":{"docs":{},"个":{"docs":{},"存":{"docs":{},"储":{"docs":{},"单":{"docs":{},"一":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"集":{"docs":{},",":{"docs":{},"如":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},")":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"一":{"docs":{},"单":{"docs":{},"个":{"docs":{},"字":{"docs":{},"母":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}},"m":{"docs":{},"e":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}}}}}}}}}},"。":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"展":{"docs":{},"示":{"docs":{},"的":{"docs":{},"是":{"docs":{},"用":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"时":{"docs":{},",":{"docs":{},"在":{"docs":{},"圆":{"docs":{},"括":{"docs":{},"号":{"docs":{},"中":{"docs":{},"传":{"docs":{},"给":{"docs":{},"它":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"参":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"包":{"docs":{},"含":{"docs":{},"在":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"体":{"docs":{},"中":{"docs":{},",":{"docs":{},"先":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"名":{"docs":{},"为":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"同":{"docs":{},"时":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"了":{"docs":{},"给":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"问":{"docs":{},"候":{"docs":{},"消":{"docs":{},"息":{"docs":{},"。":{"docs":{},"然":{"docs":{},"后":{"docs":{},"用":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"把":{"docs":{},"这":{"docs":{},"个":{"docs":{},"问":{"docs":{},"候":{"docs":{},"返":{"docs":{},"回":{"docs":{},"出":{"docs":{},"去":{"docs":{},"。":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123}}}}},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":1.6776960784313724}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.025735294117647058}},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.056910569105691054}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123}}}}}}}}}}}}},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"l":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}}}}}}},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"区":{"docs":{},"别":{"docs":{},"实":{"docs":{},"例":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"像":{"docs":{},"传":{"docs":{},"入":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},"给":{"docs":{},"类":{"docs":{},"传":{"docs":{},"入":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"。":{"docs":{},"每":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"都":{"docs":{},"需":{"docs":{},"要":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"—":{"docs":{},"—":{"docs":{},"无":{"docs":{},"论":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"声":{"docs":{},"明":{"docs":{},"(":{"docs":{},"就":{"docs":{},"像":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},"还":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"(":{"docs":{},"就":{"docs":{},"像":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"6":{"docs":{},":":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.007168458781362007}}}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.08333333333333333}},"e":{"docs":{},"­":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.08333333333333333}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.007050528789659225}},".":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}},"类":{"docs":{},"缺":{"docs":{},"少":{"docs":{},"了":{"docs":{},"一":{"docs":{},"些":{"docs":{},"重":{"docs":{},"要":{"docs":{},"的":{"docs":{},"东":{"docs":{},"西":{"docs":{},":":{"docs":{},"一":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"来":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"类":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.012925969447708578}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.01527614571092832}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"e":{"docs":{},"时":{"docs":{},"候":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"用":{"docs":{},"来":{"docs":{},"标":{"docs":{},"记":{"docs":{},"一":{"docs":{},"个":{"docs":{},"会":{"docs":{},"修":{"docs":{},"改":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"。":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}},"z":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"(":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266}},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"中":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"。":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"c":{"1":{"docs":{},",":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"c":{"2":{"docs":{},"。":{"docs":{},"c":{"1":{"docs":{},"和":{"docs":{},"c":{"2":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"docs":{}}}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"1":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.007473841554559043}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},">":{"docs":{},"(":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}},"u":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}},"r":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":3.3597185576077395}},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.021108179419525065}}}}}}}},"u":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018}}}},"r":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.011750881316098707}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"r":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.025089605734767026}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.005376344086021506}}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}}}}}}},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.007473841554559043}},"(":{"docs":{},"栈":{"docs":{},")":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"栈":{"docs":{},"是":{"docs":{},"一":{"docs":{},"系":{"docs":{},"列":{"docs":{},"值":{"docs":{},"域":{"docs":{},"的":{"docs":{},"集":{"docs":{},"合":{"docs":{},",":{"docs":{},"和":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"(":{"docs":{},"数":{"docs":{},"组":{"docs":{},")":{"docs":{},"相":{"docs":{},"似":{"docs":{},",":{"docs":{},"但":{"docs":{},"其":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"比":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"的":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"更":{"docs":{},"多":{"docs":{},"限":{"docs":{},"制":{"docs":{},"的":{"docs":{},"集":{"docs":{},"合":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"数":{"docs":{},"组":{"docs":{},"可":{"docs":{},"以":{"docs":{},"允":{"docs":{},"许":{"docs":{},"其":{"docs":{},"里":{"docs":{},"面":{"docs":{},"任":{"docs":{},"何":{"docs":{},"位":{"docs":{},"置":{"docs":{},"的":{"docs":{},"插":{"docs":{},"入":{"docs":{},"/":{"docs":{},"删":{"docs":{},"除":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"而":{"docs":{},"栈":{"docs":{},",":{"docs":{},"只":{"docs":{},"允":{"docs":{},"许":{"docs":{},",":{"docs":{},"只":{"docs":{},"允":{"docs":{},"许":{"docs":{},"在":{"docs":{},"集":{"docs":{},"合":{"docs":{},"的":{"docs":{},"末":{"docs":{},"端":{"docs":{},"添":{"docs":{},"加":{"docs":{},"新":{"docs":{},"的":{"docs":{},"项":{"docs":{},"(":{"docs":{},"如":{"docs":{},"同":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"值":{"docs":{},"进":{"docs":{},"栈":{"docs":{},")":{"docs":{},"。":{"docs":{},"同":{"docs":{},"样":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"栈":{"docs":{},"也":{"docs":{},"只":{"docs":{},"能":{"docs":{},"从":{"docs":{},"末":{"docs":{},"端":{"docs":{},"移":{"docs":{},"除":{"docs":{},"项":{"docs":{},"(":{"docs":{},"如":{"docs":{},"同":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"d":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}}}}}}},"如":{"docs":{},"何":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}},"单":{"docs":{},"例":{"docs":{},"来":{"docs":{},"存":{"docs":{},"储":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"压":{"docs":{},"了":{"docs":{},"三":{"docs":{},"个":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"进":{"docs":{},"栈":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"也":{"docs":{},"创":{"docs":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"单":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"包":{"docs":{},"含":{"docs":{},"三":{"docs":{},"个":{"docs":{},"同":{"docs":{},"栈":{"docs":{},"里":{"docs":{},"一":{"docs":{},"样":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"。":{"docs":{},"即":{"docs":{},"便":{"docs":{},"栈":{"docs":{},"和":{"docs":{},"数":{"docs":{},"组":{"docs":{},"否":{"docs":{},"是":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"但":{"docs":{},"他":{"docs":{},"们":{"docs":{},"都":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"而":{"docs":{},"且":{"docs":{},"他":{"docs":{},"们":{"docs":{},"都":{"docs":{},"包":{"docs":{},"含":{"docs":{},"同":{"docs":{},"样":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"值":{"docs":{},"。":{"docs":{},"你":{"docs":{},"因":{"docs":{},"此":{"docs":{},"可":{"docs":{},"以":{"docs":{},"调":{"docs":{},"用":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"用":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"作":{"docs":{},"为":{"docs":{},"它":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"函":{"docs":{},"数":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},"显":{"docs":{},"示":{"docs":{},"了":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"同":{"docs":{},"创":{"docs":{},"建":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"中":{"docs":{},"其":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"任":{"docs":{},"何":{"docs":{},"有":{"docs":{},"效":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"栈":{"docs":{},",":{"docs":{},"这":{"docs":{},"种":{"docs":{},"方":{"docs":{},"式":{"docs":{},"如":{"docs":{},"同":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"基":{"docs":{},"本":{"docs":{},"上":{"docs":{},"和":{"docs":{},"非":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"t":{"docs":{},"代":{"docs":{},"替":{"docs":{},"了":{"docs":{},"实":{"docs":{},"际":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"包":{"docs":{},"含":{"docs":{},"在":{"docs":{},"一":{"docs":{},"对":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"里":{"docs":{},"(":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"和":{"docs":{},"下":{"docs":{},"标":{"docs":{},"保":{"docs":{},"证":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"所":{"docs":{},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"适":{"docs":{},"用":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"这":{"docs":{},"个":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"后":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"将":{"docs":{},"任":{"docs":{},"何":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"当":{"docs":{},"作":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.007352941176470588}}},"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0282021151586369},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.025089605734767026},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":1.705269607843137},"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.09523809523809523},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.0712401055408971},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.01046337817638266}},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}},".":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}}}},"”":{"docs":{},"的":{"docs":{},"意":{"docs":{},"思":{"docs":{},"是":{"docs":{},"“":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"任":{"docs":{},"意":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}},"和":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"解":{"docs":{},"析":{"docs":{},"可":{"docs":{},"选":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"做":{"docs":{},"t":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"作":{"docs":{},"用":{"docs":{},"是":{"docs":{},"将":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"值":{"docs":{},"。":{"docs":{},"然":{"docs":{},"而":{"docs":{},",":{"docs":{},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"一":{"docs":{},"个":{"docs":{},"整":{"docs":{},"数":{"docs":{},"。":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"1":{"2":{"3":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"数":{"docs":{},"字":{"1":{"2":{"3":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"你":{"docs":{},"绝":{"docs":{},"对":{"docs":{},"不":{"docs":{},"可":{"docs":{},"能":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"传":{"docs":{},"进":{"docs":{},"去":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}},"名":{"docs":{},"字":{"docs":{},"为":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"会":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"你":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"传":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}}}},"c":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}},"h":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.06504065040650407}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"对":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"和":{"docs":{},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"返":{"docs":{},"回":{"docs":{},"“":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"”":{"docs":{},",":{"docs":{},"对":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"返":{"docs":{},"回":{"docs":{},"“":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"描":{"docs":{},"述":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"四":{"docs":{},"种":{"docs":{},"花":{"docs":{},"色":{"docs":{},",":{"docs":{},"并":{"docs":{},"分":{"docs":{},"别":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123}},"o":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"(":{"4":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}},"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}}}}}}},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"(":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}}}}}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"y":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}},"u":{"0":{"0":{"0":{"1":{"docs":{},"f":{"4":{"9":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"2":{"6":{"6":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"index.html#gitbook_165":{"ref":"index.html#gitbook_165","tf":0.1111111111111111},"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter1/chapter1.html#gitbook_168":{"ref":"chapter1/chapter1.html#gitbook_168","tf":0.25},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/09_Classes_and_Structures.html#gitbook_177":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_177","tf":1},"chapter2/16_Automatic_Reference_Counting.html#gitbook_184":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_184","tf":0.16666666666666666},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087},"chapter2/chapter2.html#gitbook_194":{"ref":"chapter2/chapter2.html#gitbook_194","tf":0.3333333333333333},"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.041666666666666664}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":1.7310049019607843}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.011029411764705883}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}}}}}}}}}}},"o":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"w":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.008960573476702509}}}}}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}}}}}}}}}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"接":{"docs":{},"受":{"docs":{},"一":{"docs":{},"个":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"这":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"现":{"docs":{},"有":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"。":{"docs":{},"注":{"docs":{},"意":{"docs":{},",":{"docs":{},"你":{"docs":{},"并":{"docs":{},"不":{"docs":{},"能":{"docs":{},"传":{"docs":{},"入":{"docs":{},"任":{"docs":{},"意":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"只":{"docs":{},"能":{"docs":{},"传":{"docs":{},"入":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"进":{"docs":{},"行":{"docs":{},"相":{"docs":{},"加":{"docs":{},"。":{"docs":{},"目":{"docs":{},"标":{"docs":{},"常":{"docs":{},"量":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"推":{"docs":{},"测":{"docs":{},"为":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"是":{"docs":{},"两":{"docs":{},"个":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"3":{"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"8":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.008960573476702509},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}},"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}},",":{"docs":{},"除":{"docs":{},"非":{"docs":{},"你":{"docs":{},"真":{"docs":{},"的":{"docs":{},"需":{"docs":{},"要":{"docs":{},"存":{"docs":{},"储":{"docs":{},"一":{"docs":{},"个":{"docs":{},"和":{"docs":{},"当":{"docs":{},"前":{"docs":{},"平":{"docs":{},"台":{"docs":{},"原":{"docs":{},"生":{"docs":{},"字":{"docs":{},"长":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"无":{"docs":{},"符":{"docs":{},"号":{"docs":{},"整":{"docs":{},"数":{"docs":{},"。":{"docs":{},"除":{"docs":{},"了":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},",":{"docs":{},"最":{"docs":{},"好":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"即":{"docs":{},"使":{"docs":{},"你":{"docs":{},"要":{"docs":{},"存":{"docs":{},"储":{"docs":{},"的":{"docs":{},"值":{"docs":{},"已":{"docs":{},"知":{"docs":{},"是":{"docs":{},"非":{"docs":{},"负":{"docs":{},"的":{"docs":{},"。":{"docs":{},"统":{"docs":{},"一":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}}}}}}}}}}}}}}},"+":{"0":{"0":{"2":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"6":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}},"1":{"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}},"docs":{}},"9":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}}},"2":{"6":{"6":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"d":{"8":{"3":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}},"docs":{}},"docs":{},"c":{"3":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"docs":{}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}},"docs":{},"-":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.014705882352941176}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.014705882352941176}},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":1.6666666666666665}}}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}}}},"w":{"docs":{},"w":{"docs":{},"d":{"docs":{},"c":{"docs":{"index.html#gitbook_165":{"ref":"index.html#gitbook_165","tf":0.1111111111111111}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}},"k":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{},"只":{"docs":{},"在":{"docs":{},"冒":{"docs":{},"号":{"docs":{},"后":{"docs":{},"面":{"docs":{},"写":{"docs":{},"接":{"docs":{},"口":{"docs":{},"或":{"docs":{},"者":{"docs":{},"类":{"docs":{},"名":{"docs":{},"。":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"队":{"docs":{},"列":{"docs":{},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"使":{"docs":{},"你":{"docs":{},"能":{"docs":{},"够":{"docs":{},"要":{"docs":{},"求":{"docs":{},"一":{"docs":{},"个":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"一":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"(":{"docs":{},"或":{"docs":{},")":{"docs":{},"那":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"和":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"紧":{"docs":{},"随":{"docs":{},"放":{"docs":{},"置":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},",":{"docs":{},"写":{"docs":{},"在":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}}},"e":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.005376344086021506}},"e":{"docs":{},"变":{"docs":{},"量":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"类":{"docs":{},"型":{"docs":{},"标":{"docs":{},"注":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"这":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808},"chapter2/16_Automatic_Reference_Counting.html#gitbook_184":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_184","tf":0.16666666666666666}},"为":{"docs":{},"了":{"docs":{},"能":{"docs":{},"帮":{"docs":{},"助":{"docs":{},"你":{"docs":{},"管":{"docs":{},"理":{"docs":{},"内":{"docs":{},"存":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"更":{"docs":{},"多":{"docs":{},"的":{"docs":{},"关":{"docs":{},"于":{"docs":{},"你":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"之":{"docs":{},"间":{"docs":{},"关":{"docs":{},"系":{"docs":{},"的":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{},"本":{"docs":{},"章":{"docs":{},"描":{"docs":{},"述":{"docs":{},"了":{"docs":{},"这":{"docs":{},"些":{"docs":{},"情":{"docs":{},"况":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"为":{"docs":{},"你":{"docs":{},"示":{"docs":{},"范":{"docs":{},"怎":{"docs":{},"样":{"docs":{},"启":{"docs":{},"用":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_184":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_184","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"分":{"docs":{},"配":{"docs":{},"一":{"docs":{},"大":{"docs":{},"块":{"docs":{},"内":{"docs":{},"存":{"docs":{},"用":{"docs":{},"来":{"docs":{},"储":{"docs":{},"存":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{},"内":{"docs":{},"存":{"docs":{},"中":{"docs":{},"会":{"docs":{},"包":{"docs":{},"含":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"这":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},"所":{"docs":{},"有":{"docs":{},"相":{"docs":{},"关":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"此":{"docs":{},"外":{"docs":{},",":{"docs":{},"当":{"docs":{},"实":{"docs":{},"例":{"docs":{},"不":{"docs":{},"再":{"docs":{},"被":{"docs":{},"使":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_184":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_184","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"跟":{"docs":{},"踪":{"docs":{},"和":{"docs":{},"计":{"docs":{},"算":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"实":{"docs":{},"例":{"docs":{},"正":{"docs":{},"在":{"docs":{},"被":{"docs":{},"多":{"docs":{},"少":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"常":{"docs":{},"量":{"docs":{},"和":{"docs":{},"变":{"docs":{},"量":{"docs":{},"所":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"哪":{"docs":{},"怕":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"引":{"docs":{},"用":{"docs":{},"数":{"docs":{},"为":{"docs":{},"一":{"docs":{},",":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_184":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_184","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}},"性":{"docs":{},"质":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"存":{"docs":{},"储":{"docs":{},"值":{"docs":{},"。":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"提":{"docs":{},"供":{"docs":{},"两":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},":":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"和":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},",":{"docs":{},"从":{"docs":{},"栈":{"docs":{},"中":{"docs":{},"压":{"docs":{},"进":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"和":{"docs":{},"移":{"docs":{},"除":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"这":{"docs":{},"些":{"docs":{},"方":{"docs":{},"法":{"docs":{},"标":{"docs":{},"记":{"docs":{},"为":{"docs":{},"可":{"docs":{},"变":{"docs":{},"的":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"他":{"docs":{},"们":{"docs":{},"需":{"docs":{},"要":{"docs":{},"修":{"docs":{},"改":{"docs":{},"(":{"docs":{},"或":{"docs":{},"转":{"docs":{},"换":{"docs":{},")":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}},"被":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"别":{"docs":{},"名":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"是":{"docs":{},"别":{"docs":{},"名":{"docs":{},",":{"docs":{},"a":{"docs":{},"u":{"docs":{},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"会":{"docs":{},"给":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"赋":{"docs":{},"一":{"docs":{},"个":{"docs":{},"初":{"docs":{},"值":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.024390243902439025}},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}},"t":{"1":{"docs":{},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}}}}}}}}}}}},"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.02389705882352941}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.005376344086021506}},"e":{"docs":{},"r":{"docs":{},"常":{"docs":{},"量":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"i":{"docs":{},"f":{"docs":{},"语":{"docs":{},"句":{"docs":{},"的":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"。":{"docs":{},"它":{"docs":{},"已":{"docs":{},"经":{"docs":{},"被":{"docs":{},"可":{"docs":{},"选":{"docs":{},"包":{"docs":{},"含":{"docs":{},"的":{"docs":{},"值":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"过":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"再":{"docs":{},"使":{"docs":{},"用":{"docs":{},"!":{"docs":{},"后":{"docs":{},"缀":{"docs":{},"来":{"docs":{},"获":{"docs":{},"取":{"docs":{},"它":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"d":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"o":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.007050528789659225}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.029023746701846966}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"2":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.01195814648729447}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}}}}}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.047619047619047616}}}},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}},"p":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483}},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}}}}}}},"方":{"docs":{},"法":{"docs":{},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}}},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.007168458781362007}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.047619047619047616}}}}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}},"函":{"docs":{},"数":{"docs":{},"来":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"断":{"docs":{},"言":{"docs":{},"。":{"docs":{},"给":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"函":{"docs":{},"数":{"docs":{},"传":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"结":{"docs":{},"果":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"或":{"docs":{},"者":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"的":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"以":{"docs":{},"及":{"docs":{},"一":{"docs":{},"条":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"当":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.005376344086021506}}}}}}}}}},"c":{"docs":{},"i":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}},"a":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"e":{"docs":{},"x":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266}}}},"s":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"两":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"单":{"docs":{},"例":{"docs":{},"包":{"docs":{},"含":{"docs":{},"具":{"docs":{},"有":{"docs":{},"相":{"docs":{},"同":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"的":{"docs":{},"相":{"docs":{},"同":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"的":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"首":{"docs":{},"先":{"docs":{},"检":{"docs":{},"查":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"是":{"docs":{},"否":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"同":{"docs":{},"样":{"docs":{},"数":{"docs":{},"目":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"他":{"docs":{},"们":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"数":{"docs":{},"目":{"docs":{},"不":{"docs":{},"同":{"docs":{},",":{"docs":{},"没":{"docs":{},"有":{"docs":{},"办":{"docs":{},"法":{"docs":{},"进":{"docs":{},"行":{"docs":{},"匹":{"docs":{},"配":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"就":{"docs":{},"会":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"c":{"1":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}},".":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}}}}}}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"同":{"docs":{},"样":{"docs":{},"是":{"docs":{},"c":{"2":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}},"docs":{}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}},"2":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}},".":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}},"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.017921146953405017},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.07142857142857142},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.012867647058823529}},"的":{"docs":{},"基":{"docs":{},"础":{"docs":{},"上":{"docs":{},"构":{"docs":{},"建":{"docs":{},"框":{"docs":{},"架":{"docs":{},"栈":{"docs":{},"并":{"docs":{},"将":{"docs":{},"其":{"docs":{},"标":{"docs":{},"准":{"docs":{},"化":{"docs":{},"。":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"docs":{},"的":{"docs":{},"n":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"函":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"(":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"n":{"docs":{},"u":{"docs":{},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{},"获":{"docs":{},"取":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"的":{"docs":{},"数":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.007168458781362007}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"]":{"docs":{},"[":{"8":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.02242152466367713}},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"写":{"docs":{},"作":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}},"泛":{"docs":{},"型":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"指":{"docs":{},"定":{"docs":{},"存":{"docs":{},"储":{"docs":{},"在":{"docs":{},"其":{"docs":{},"里":{"docs":{},"面":{"docs":{},"的":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"保":{"docs":{},"证":{"docs":{},"只":{"docs":{},"有":{"docs":{},"正":{"docs":{},"确":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"可":{"docs":{},"以":{"docs":{},"加":{"docs":{},"进":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"明":{"docs":{},"确":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"其":{"docs":{},"下":{"docs":{},"标":{"docs":{},"返":{"docs":{},"回":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"要":{"docs":{},"一":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"指":{"docs":{},"定":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},"将":{"docs":{},"会":{"docs":{},"保":{"docs":{},"留":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"知":{"docs":{},"道":{"docs":{},"特":{"docs":{},"定":{"docs":{},"容":{"docs":{},"器":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"需":{"docs":{},"要":{"docs":{},"指":{"docs":{},"定":{"docs":{},"任":{"docs":{},"何":{"docs":{},"通":{"docs":{},"过":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}}}}}}},"d":{"docs":{},"e":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.014336917562724014},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.008960573476702509}}}}}},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}}},"的":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"'":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.012867647058823529}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":3.3359718557607736}}}}}}},"r":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"副":{"docs":{},"完":{"docs":{},"整":{"docs":{},"的":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"并":{"docs":{},"把":{"docs":{},"每":{"docs":{},"张":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"和":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}},"s":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.024676850763807285},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.04065040650406504}}}},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"f":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.022058823529411766},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}},"e":{"docs":{},"r":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.009191176470588236}}},"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}},"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}},"s":{"docs":{},")":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"字":{"docs":{},"面":{"docs":{},"量":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"空":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"可":{"docs":{},"变":{"docs":{},"性":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"是":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"使":{"docs":{},"用":{"docs":{},"字":{"docs":{},"符":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{},"计":{"docs":{},"算":{"docs":{},"字":{"docs":{},"符":{"docs":{},"数":{"docs":{},"量":{"docs":{},"连":{"docs":{},"接":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"和":{"docs":{},"字":{"docs":{},"符":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"插":{"docs":{},"值":{"docs":{},"比":{"docs":{},"较":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"相":{"docs":{},"等":{"docs":{},"前":{"docs":{},"缀":{"docs":{},"/":{"docs":{},"后":{"docs":{},"缀":{"docs":{},"相":{"docs":{},"等":{"docs":{},"大":{"docs":{},"写":{"docs":{},"和":{"docs":{},"小":{"docs":{},"写":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":1.6666666666666665}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.010575793184488837},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}},"u":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}},"u":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.008960573476702509}},"a":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},";":{"docs":{},")":{"docs":{},"元":{"docs":{},"组":{"docs":{},"把":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"值":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}}}},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}},"循":{"docs":{},"环":{"docs":{},"和":{"docs":{},"半":{"docs":{},"闭":{"docs":{},"区":{"docs":{},"间":{"docs":{},"操":{"docs":{},"作":{"docs":{},"(":{"docs":{},".":{"docs":{},".":{"docs":{},")":{"docs":{},"来":{"docs":{},"迭":{"docs":{},"代":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"每":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"不":{"docs":{},"等":{"docs":{},"于":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"不":{"docs":{},"等":{"docs":{},",":{"docs":{},"则":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"不":{"docs":{},"匹":{"docs":{},"配":{"docs":{},",":{"docs":{},"返":{"docs":{},"回":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"-":{"docs":{},"u":{"docs":{},"n":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}},"—":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}},"l":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}},"i":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"[":{"3":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{},"\"":{"docs":{},"m":{"docs":{},"i":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"<":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},">":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}},"中":{"docs":{},"这":{"docs":{},"个":{"docs":{},"单":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"写":{"docs":{},"做":{"docs":{},":":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"现":{"docs":{},"在":{"docs":{},"则":{"docs":{},"可":{"docs":{},"以":{"docs":{},"成":{"docs":{},"功":{"docs":{},"的":{"docs":{},"编":{"docs":{},"译":{"docs":{},"过":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"任":{"docs":{},"何":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"如":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"或":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"用":{"docs":{},"某":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"。":{"docs":{},"请":{"docs":{},"注":{"docs":{},"意":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"仍":{"docs":{},"然":{"docs":{},"返":{"docs":{},"回":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"非":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"功":{"docs":{},"能":{"docs":{},"是":{"docs":{},"去":{"docs":{},"查":{"docs":{},"找":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"给":{"docs":{},"定":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{},"若":{"docs":{},"查":{"docs":{},"找":{"docs":{},"到":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},",":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"该":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"在":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"的":{"docs":{},"索":{"docs":{},"引":{"docs":{},"值":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},",":{"docs":{},"反":{"docs":{},"之":{"docs":{},"则":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"并":{"docs":{},"指":{"docs":{},"定":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"为":{"4":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}}}}}}}},"表":{"docs":{},"示":{"3":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"y":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.010752688172043012}},"e":{"docs":{},"的":{"docs":{},"值":{"docs":{},"从":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"!":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"改":{"docs":{},"为":{"docs":{},"了":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"!":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}},"o":{"docs":{},"m":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0282021151586369},"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.047619047619047616},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.013192612137203167},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.03288490284005979}},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"名":{"docs":{},"字":{"docs":{},"和":{"docs":{},"参":{"docs":{},"数":{"docs":{},"来":{"docs":{},"调":{"docs":{},"用":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{},"使":{"docs":{},"用":{"docs":{},"-":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":10.023809523809524},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.01046337817638266}}}}}},"作":{"docs":{},"为":{"docs":{},"前":{"docs":{},"缀":{"docs":{},"。":{"docs":{},"指":{"docs":{},"定":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"时":{"docs":{},",":{"docs":{},"用":{"docs":{},"返":{"docs":{},"回":{"docs":{},"箭":{"docs":{},"头":{"docs":{},"-":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.005875440658049354},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.007352941176470588},"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.11904761904761904},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}},"p":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}},"成":{"docs":{},"员":{"docs":{},":":{"docs":{},"给":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"常":{"docs":{},"量":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"时":{"docs":{},",":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"成":{"docs":{},"员":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"需":{"docs":{},"要":{"docs":{},"用":{"docs":{},"全":{"docs":{},"名":{"docs":{},"来":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"常":{"docs":{},"量":{"docs":{},"没":{"docs":{},"有":{"docs":{},"显":{"docs":{},"式":{"docs":{},"指":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"里":{"docs":{},",":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"成":{"docs":{},"员":{"docs":{},"使":{"docs":{},"用":{"docs":{},"缩":{"docs":{},"写":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"来":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"的":{"docs":{},"值":{"docs":{},"已":{"docs":{},"经":{"docs":{},"知":{"docs":{},"道":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}},"x":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"’":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"/":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"2":{"0":{"0":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"s":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"4":{"0":{"4":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.007168458781362007}},".":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}}}}}}},"docs":{}},"docs":{}},"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.005376344086021506}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.047619047619047616},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"f":{"docs":{},"和":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"来":{"docs":{},"处":{"docs":{},"理":{"docs":{},"值":{"docs":{},"缺":{"docs":{},"失":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{},"有":{"docs":{},"些":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"值":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"值":{"docs":{},"可":{"docs":{},"能":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"值":{"docs":{},"或":{"docs":{},"者":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"来":{"docs":{},"进":{"docs":{},"行":{"docs":{},"条":{"docs":{},"件":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"、":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"、":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},"来":{"docs":{},"对":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"值":{"docs":{},"进":{"docs":{},"行":{"docs":{},"判":{"docs":{},"断":{"docs":{},"并":{"docs":{},"把":{"docs":{},"值":{"docs":{},"赋":{"docs":{},"给":{"docs":{},"一":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"i":{"docs":{},"f":{"docs":{},"和":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},",":{"docs":{},"条":{"docs":{},"件":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"—":{"docs":{},"—":{"docs":{},"这":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"像":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"判":{"docs":{},"断":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"是":{"docs":{},"否":{"docs":{},"包":{"docs":{},"含":{"docs":{},"值":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"可":{"docs":{},"选":{"docs":{},"有":{"docs":{},"值":{"docs":{},",":{"docs":{},"结":{"docs":{},"果":{"docs":{},"是":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},";":{"docs":{},"如":{"docs":{},"果":{"docs":{},"没":{"docs":{},"有":{"docs":{},"值":{"docs":{},",":{"docs":{},"结":{"docs":{},"果":{"docs":{},"是":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"操":{"docs":{},"作":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"改":{"docs":{},"成":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}},"l":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.008960573476702509}}}}}}}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"a":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"(":{"7":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}},"b":{"docs":{},"y":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.0079155672823219}}}},"n":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.026385224274406333}}}}}}},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.05013192612137203}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}}}}},"c":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.01195814648729447}}}}},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}},"t":{"8":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"的":{"docs":{},"数":{"docs":{},"字":{"docs":{},"范":{"docs":{},"围":{"docs":{},"是":{"docs":{},"-":{"1":{"2":{"8":{"docs":{},"~":{"1":{"2":{"7":{"docs":{},",":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"能":{"docs":{},"存":{"docs":{},"储":{"docs":{},"的":{"docs":{},"数":{"docs":{},"字":{"docs":{},"范":{"docs":{},"围":{"docs":{},"是":{"0":{"docs":{},"~":{"2":{"5":{"5":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.024676850763807285},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.026881720430107527},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.021108179419525065},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.04878048780487805},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.03736920777279522}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},"把":{"docs":{},"常":{"docs":{},"量":{"docs":{},"名":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"名":{"docs":{},"当":{"docs":{},"做":{"docs":{},"占":{"docs":{},"位":{"docs":{},"符":{"docs":{},"加":{"docs":{},"入":{"docs":{},"到":{"docs":{},"长":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"中":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"会":{"docs":{},"用":{"docs":{},"当":{"docs":{},"前":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"值":{"docs":{},"替":{"docs":{},"换":{"docs":{},"这":{"docs":{},"些":{"docs":{},"占":{"docs":{},"位":{"docs":{},"符":{"docs":{},"。":{"docs":{},"将":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"变":{"docs":{},"量":{"docs":{},"名":{"docs":{},"放":{"docs":{},"入":{"docs":{},"反":{"docs":{},"斜":{"docs":{},"杠":{"docs":{},"符":{"docs":{},"加":{"docs":{},"一":{"docs":{},"对":{"docs":{},"圆":{"docs":{},"括":{"docs":{},"号":{"docs":{},"中":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"\\":{"docs":{},"(":{"docs":{},")":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.010752688172043012}},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}}}},"(":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}},")":{"docs":{},"或":{"docs":{},"者":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"和":{"docs":{},"类":{"docs":{},"型":{"docs":{},"推":{"docs":{},"测":{"docs":{},"数":{"docs":{},"值":{"docs":{},"类":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"数":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"转":{"docs":{},"换":{"docs":{},"整":{"docs":{},"数":{"docs":{},"转":{"docs":{},"换":{"docs":{},"整":{"docs":{},"数":{"docs":{},"和":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"数":{"docs":{},"转":{"docs":{},"换":{"docs":{},"类":{"docs":{},"型":{"docs":{},"别":{"docs":{},"名":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"值":{"docs":{},"元":{"docs":{},"组":{"docs":{},"可":{"docs":{},"选":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":5}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"就":{"docs":{},"够":{"docs":{},"了":{"docs":{},"。":{"docs":{},"这":{"docs":{},"可":{"docs":{},"以":{"docs":{},"提":{"docs":{},"高":{"docs":{},"代":{"docs":{},"码":{"docs":{},"一":{"docs":{},"致":{"docs":{},"性":{"docs":{},"和":{"docs":{},"可":{"docs":{},"复":{"docs":{},"用":{"docs":{},"性":{"docs":{},"。":{"docs":{},"即":{"docs":{},"使":{"docs":{},"是":{"docs":{},"在":{"3":{"2":{"docs":{},"位":{"docs":{},"平":{"docs":{},"台":{"docs":{},"上":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"的":{"docs":{},"整":{"docs":{},"数":{"docs":{},"范":{"docs":{},"围":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"达":{"docs":{},"到":{"docs":{},"-":{"2":{"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"8":{"docs":{},"~":{"2":{"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"7":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"整":{"docs":{},"型":{"docs":{},";":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"和":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"是":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"型":{"docs":{},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"是":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"型":{"docs":{},";":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"是":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"更":{"docs":{},"大":{"docs":{},"或":{"docs":{},"者":{"docs":{},"更":{"docs":{},"小":{"docs":{},"的":{"docs":{},"数":{"docs":{},"字":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}},"指":{"docs":{},"定":{"docs":{},"了":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"适":{"docs":{},"用":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"被":{"docs":{},"用":{"docs":{},"作":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"这":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"只":{"docs":{},"能":{"docs":{},"用":{"docs":{},"于":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"值":{"docs":{},",":{"docs":{},"不":{"docs":{},"过":{"docs":{},",":{"docs":{},"其":{"docs":{},"对":{"docs":{},"于":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"三":{"docs":{},"个":{"docs":{},"要":{"docs":{},"求":{"docs":{},",":{"docs":{},"在":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"非":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"适":{"docs":{},"用":{"docs":{},"于":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}},"索":{"docs":{},"引":{"docs":{},"值":{"docs":{},"下":{"docs":{},"标":{"docs":{},"可":{"docs":{},"以":{"docs":{},"检":{"docs":{},"索":{"docs":{},"到":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}},"这":{"docs":{},"一":{"docs":{},"行":{"docs":{},",":{"docs":{},"一":{"docs":{},"切":{"docs":{},"仍":{"docs":{},"旧":{"docs":{},"可":{"docs":{},"以":{"docs":{},"工":{"docs":{},"作":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"清":{"docs":{},"楚":{"docs":{},"的":{"docs":{},"知":{"docs":{},"道":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"将":{"docs":{},"抽":{"docs":{},"象":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"转":{"docs":{},"换":{"docs":{},"为":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}}}}}},"p":{"docs":{},"i":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.008968609865470852}}}}},"-":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"参":{"docs":{},"数":{"docs":{},"交":{"docs":{},"换":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"被":{"docs":{},"描":{"docs":{},"述":{"docs":{},"为":{"docs":{},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"-":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"]":{"docs":{},"[":{"1":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.014947683109118086}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.01046337817638266}},"e":{"docs":{},"。":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}}}}}}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"需":{"docs":{},"求":{"docs":{},"通":{"docs":{},"过":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"约":{"docs":{},"束":{"docs":{},"和":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"空":{"docs":{},"的":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}},"是":{"docs":{},"如":{"docs":{},"何":{"docs":{},"存":{"docs":{},"储":{"docs":{},"的":{"docs":{},"或":{"docs":{},"何":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"允":{"docs":{},"许":{"docs":{},"的":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"协":{"docs":{},"议":{"docs":{},"只":{"docs":{},"指":{"docs":{},"定":{"docs":{},"三":{"docs":{},"个":{"docs":{},"任":{"docs":{},"何":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"该":{"docs":{},"参":{"docs":{},"数":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}},"o":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.011029411764705883}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.09523809523809523},"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.017921146953405017},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}},"c":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}},"s":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.047619047619047616},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"[":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"a":{"docs":{},"y":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.041666666666666664}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.016129032258064516},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"e":{"docs":{},"改":{"docs":{},"成":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"会":{"docs":{},"是":{"docs":{},"什":{"docs":{},"么":{"docs":{},"?":{"docs":{},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"当":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"时":{"docs":{},"给":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"<":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"e":{"docs":{},"和":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"p":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"会":{"docs":{},"被":{"docs":{},"推":{"docs":{},"测":{"docs":{},"为":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"们":{"docs":{},"的":{"docs":{},"初":{"docs":{},"值":{"docs":{},"是":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"。":{"docs":{},"就":{"docs":{},"像":{"docs":{},"之":{"docs":{},"前":{"docs":{},"提":{"docs":{},"到":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"给":{"docs":{},"它":{"docs":{},"们":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"或":{"docs":{},"者":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"那":{"docs":{},"你":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"给":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"标":{"docs":{},"明":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"e":{"docs":{},"标":{"docs":{},"记":{"docs":{},"—":{"docs":{},"—":{"docs":{},"如":{"docs":{},"果":{"docs":{},"没":{"docs":{},"有":{"docs":{},"添":{"docs":{},"加":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"就":{"docs":{},"重":{"docs":{},"写":{"docs":{},"父":{"docs":{},"类":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"话":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"会":{"docs":{},"报":{"docs":{},"错":{"docs":{},"。":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"同":{"docs":{},"样":{"docs":{},"会":{"docs":{},"检":{"docs":{},"测":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.010554089709762533},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.032520325203252036}}}}}}}},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}},"<":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},">":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.005875440658049354}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.03525264394829612},"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.047619047619047616},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.03430079155672823},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.032520325203252036},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.026905829596412557}},"f":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"缩":{"docs":{},"写":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"函":{"docs":{},"数":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":3.333333333333333}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.023746701846965697}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.04878048780487805}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"(":{"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"docs":{}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"在":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"中":{"docs":{},",":{"docs":{},"但":{"docs":{},"仍":{"docs":{},"可":{"docs":{},"被":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"在":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"实":{"docs":{},"例":{"docs":{},"时":{"docs":{},"能":{"docs":{},"够":{"docs":{},"通":{"docs":{},"过":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"类":{"docs":{},"型":{"docs":{},"中":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"名":{"docs":{},"称":{"docs":{},"单":{"docs":{},"独":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"属":{"docs":{},"性":{"docs":{},"能":{"docs":{},"正":{"docs":{},"确":{"docs":{},"得":{"docs":{},"输":{"docs":{},"出":{"docs":{},"对":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"牌":{"docs":{},"有":{"1":{"docs":{},"和":{"1":{"1":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"自":{"docs":{},"己":{"docs":{},"内":{"docs":{},"部":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"包":{"docs":{},"含":{"docs":{},"两":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"其":{"docs":{},"余":{"docs":{},"牌":{"docs":{},"都":{"docs":{},"只":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"数":{"docs":{},"值":{"docs":{},"。":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"会":{"docs":{},"根":{"docs":{},"据":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"面":{"docs":{},"值":{"docs":{},",":{"docs":{},"用":{"docs":{},"适":{"docs":{},"当":{"docs":{},"的":{"docs":{},"数":{"docs":{},"值":{"docs":{},"去":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"给":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"会":{"docs":{},"使":{"docs":{},"用":{"docs":{},"特":{"docs":{},"殊":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"对":{"docs":{},"于":{"docs":{},"数":{"docs":{},"字":{"docs":{},"面":{"docs":{},"值":{"docs":{},"的":{"docs":{},"牌":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"描":{"docs":{},"述":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"从":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"~":{"1":{"0":{"docs":{},",":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{},",":{"1":{"3":{"docs":{},"张":{"docs":{},"牌":{"docs":{},",":{"docs":{},"并":{"docs":{},"分":{"docs":{},"别":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"表":{"docs":{},"示":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"面":{"docs":{},"值":{"docs":{},"。":{"docs":{},"(":{"docs":{},"这":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"不":{"docs":{},"适":{"docs":{},"用":{"docs":{},"于":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.047493403693931395}}}}}}}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.026905829596412557}},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.023809523809523808},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"和":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},"可":{"docs":{},"能":{"docs":{},"会":{"docs":{},"失":{"docs":{},"败":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"它":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"被":{"docs":{},"写":{"docs":{},"作":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"?":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"。":{"docs":{},"问":{"docs":{},"号":{"docs":{},"暗":{"docs":{},"示":{"docs":{},"包":{"docs":{},"含":{"docs":{},"的":{"docs":{},"值":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},",":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},"可":{"docs":{},"能":{"docs":{},"包":{"docs":{},"含":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"值":{"docs":{},"也":{"docs":{},"可":{"docs":{},"能":{"docs":{},"不":{"docs":{},"包":{"docs":{},"含":{"docs":{},"值":{"docs":{},"。":{"docs":{},"(":{"docs":{},"不":{"docs":{},"能":{"docs":{},"包":{"docs":{},"含":{"docs":{},"其":{"docs":{},"他":{"docs":{},"任":{"docs":{},"何":{"docs":{},"值":{"docs":{},"比":{"docs":{},"如":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"值":{"docs":{},"或":{"docs":{},"者":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"。":{"docs":{},"只":{"docs":{},"能":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"尝":{"docs":{},"试":{"docs":{},"将":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"i":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"m":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483}}}}}}}},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":1.6685049019607843}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.01195814648729447}}}}}}}}}}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"的":{"docs":{},"值":{"docs":{},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}},"。":{"docs":{},"从":{"docs":{},"字":{"docs":{},"面":{"docs":{},"意":{"docs":{},"思":{"docs":{},"来":{"docs":{},"说":{"docs":{},",":{"docs":{},"断":{"docs":{},"言":{"docs":{},"“":{"docs":{},"断":{"docs":{},"言":{"docs":{},"”":{"docs":{},"一":{"docs":{},"个":{"docs":{},"条":{"docs":{},"件":{"docs":{},"是":{"docs":{},"否":{"docs":{},"为":{"docs":{},"真":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"断":{"docs":{},"言":{"docs":{},"来":{"docs":{},"保":{"docs":{},"证":{"docs":{},"在":{"docs":{},"运":{"docs":{},"行":{"docs":{},"其":{"docs":{},"他":{"docs":{},"代":{"docs":{},"码":{"docs":{},"之":{"docs":{},"前":{"docs":{},",":{"docs":{},"某":{"docs":{},"些":{"docs":{},"重":{"docs":{},"要":{"docs":{},"的":{"docs":{},"条":{"docs":{},"件":{"docs":{},"已":{"docs":{},"经":{"docs":{},"被":{"docs":{},"满":{"docs":{},"足":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"条":{"docs":{},"件":{"docs":{},"判":{"docs":{},"断":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"代":{"docs":{},"码":{"docs":{},"运":{"docs":{},"行":{"docs":{},"会":{"docs":{},"继":{"docs":{},"续":{"docs":{},"进":{"docs":{},"行":{"docs":{},";":{"docs":{},"如":{"docs":{},"果":{"docs":{},"条":{"docs":{},"件":{"docs":{},"判":{"docs":{},"断":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.0316622691292876}}}}},"e":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.005376344086021506}},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},",":{"docs":{},"然":{"docs":{},"而":{"docs":{},"常":{"docs":{},"量":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"。":{"docs":{},"它":{"docs":{},"们":{"docs":{},"不":{"docs":{},"能":{"docs":{},"直":{"docs":{},"接":{"docs":{},"相":{"docs":{},"加":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"们":{"docs":{},"类":{"docs":{},"型":{"docs":{},"不":{"docs":{},"同":{"docs":{},"。":{"docs":{},"所":{"docs":{},"以":{"docs":{},"要":{"docs":{},"调":{"docs":{},"用":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},")":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"数":{"docs":{},"字":{"docs":{},"并":{"docs":{},"用":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":5.013452914798206}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.007473841554559043}}}}}},"s":{"docs":{},"中":{"docs":{},"知":{"docs":{},"道":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"有":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"去":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"新":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}},")":{"docs":{},"是":{"docs":{},"用":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"括":{"docs":{},"起":{"docs":{},"来":{"docs":{},"的":{"docs":{},"(":{"docs":{},"<":{"docs":{},"t":{"docs":{},">":{"docs":{},")":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"告":{"docs":{},"诉":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"那":{"docs":{},"个":{"docs":{},"t":{"docs":{},"是":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"所":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"t":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"节":{"docs":{},"点":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"不":{"docs":{},"会":{"docs":{},"去":{"docs":{},"查":{"docs":{},"找":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"命":{"docs":{},"名":{"docs":{},"为":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"分":{"docs":{},"别":{"docs":{},"代":{"docs":{},"表":{"docs":{},"t":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"“":{"docs":{},"某":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{},"”":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"提":{"docs":{},"供":{"docs":{},"给":{"docs":{},"后":{"docs":{},"来":{"docs":{},"用":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"将":{"docs":{},"来":{"docs":{},"类":{"docs":{},"型":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"的":{"docs":{},"定":{"docs":{},"义":{"docs":{},"里":{"docs":{},"任":{"docs":{},"何":{"docs":{},"地":{"docs":{},"方":{"docs":{},"表":{"docs":{},"示":{"docs":{},"为":{"docs":{},"“":{"docs":{},"t":{"docs":{},"”":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},")":{"docs":{},"来":{"docs":{},"代":{"docs":{},"替":{"docs":{},"实":{"docs":{},"际":{"docs":{},"类":{"docs":{},"型":{"docs":{},"名":{"docs":{},"(":{"docs":{},"如":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"或":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},"。":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"名":{"docs":{},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"表":{"docs":{},"示":{"docs":{},"t":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"其":{"docs":{},"规":{"docs":{},"定":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"同":{"docs":{},"一":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"t":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"管":{"docs":{},"t":{"docs":{},"表":{"docs":{},"示":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"只":{"docs":{},"有":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"在":{"docs":{},"每":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"所":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"实":{"docs":{},"际":{"docs":{},"类":{"docs":{},"型":{"docs":{},"决":{"docs":{},"定":{"docs":{},"了":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"被":{"docs":{},"用":{"docs":{},"作":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"参":{"docs":{},"数":{"docs":{},"和":{"docs":{},"下":{"docs":{},"标":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"因":{"docs":{},"此":{"docs":{},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"被":{"docs":{},"用":{"docs":{},"作":{"docs":{},"这":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"容":{"docs":{},"器":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"t":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"子":{"docs":{},"类":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"约":{"docs":{},"束":{"docs":{},";":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"u":{"docs":{},",":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"u":{"docs":{},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"2":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"docs":{"chapter1/01_swift.html#gitbook_166":{"ref":"chapter1/01_swift.html#gitbook_166","tf":0.047619047619047616},"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.007168458781362007}},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"e":{"docs":{},"p":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.02391629297458894}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}},"二":{"docs":{},"十":{"docs":{},"一":{"docs":{},"点":{"docs":{},")":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"模":{"docs":{},"拟":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"中":{"docs":{},"的":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"点":{"docs":{},"数":{"docs":{},"。":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"包":{"docs":{},"含":{"2":{"docs":{},"个":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"类":{"docs":{},"型":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"没":{"docs":{},"有":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"的":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},",":{"docs":{},"在":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"自":{"docs":{},"身":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"—":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"与":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},",":{"docs":{},"也":{"docs":{},"同":{"docs":{},"样":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"属":{"docs":{},"性":{"docs":{},"用":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"和":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"的":{"docs":{},"中":{"docs":{},"内":{"docs":{},"容":{"docs":{},"来":{"docs":{},"构":{"docs":{},"建":{"docs":{},"对":{"docs":{},"这":{"docs":{},"张":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"名":{"docs":{},"字":{"docs":{},"和":{"docs":{},"数":{"docs":{},"值":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},",":{"docs":{},"并":{"docs":{},"用":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"规":{"docs":{},"则":{"docs":{},"中":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"牌":{"docs":{},"可":{"docs":{},"以":{"docs":{},"表":{"docs":{},"示":{"1":{"docs":{},"或":{"docs":{},"者":{"1":{"1":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"这":{"docs":{},"一":{"docs":{},"特":{"docs":{},"征":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"在":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"型":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"的":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.08333333333333333}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.026385224274406333},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"。":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"值":{"docs":{},"是":{"docs":{},"指":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"们":{"docs":{},"只":{"docs":{},"能":{"docs":{},"是":{"docs":{},"真":{"docs":{},"或":{"docs":{},"者":{"docs":{},"假":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"地":{"docs":{},"方":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"非":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"值":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}},")":{"docs":{},"默":{"docs":{},"认":{"docs":{},"都":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"h":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"n":{"docs":{},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.007168458781362007}}}}}}},"d":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.010554089709762533}},"s":{"docs":{},"(":{"docs":{},"s":{"1":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}},"docs":{}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266}}}}}},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.011029411764705883}},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123}}},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"c":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}}}},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"上":{"docs":{},",":{"docs":{},"当":{"docs":{},"然":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"(":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"协":{"docs":{},"议":{"docs":{},")":{"docs":{},"。":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"基":{"docs":{},"本":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"如":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.013192612137203167}},"e":{"docs":{},"s":{"docs":{},"[":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}}}}}}},"o":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.012925969447708578},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.008960573476702509},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"添":{"docs":{},"加":{"docs":{},"a":{"docs":{},"b":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}}}}}}}}}},"或":{"docs":{},"者":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}},"精":{"docs":{},"确":{"docs":{},"度":{"docs":{},"很":{"docs":{},"高":{"docs":{},",":{"docs":{},"至":{"docs":{},"少":{"docs":{},"有":{"1":{"5":{"docs":{},"位":{"docs":{},"数":{"docs":{},"字":{"docs":{},",":{"docs":{},"而":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"最":{"docs":{},"少":{"docs":{},"只":{"docs":{},"有":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}},"表":{"docs":{},"示":{"6":{"4":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}}}}}},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"c":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}}}}}}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"、":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.005875440658049354},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018}},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}}}}}}}}}}}}}}},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}},">":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"安":{"docs":{},"全":{"docs":{},"的":{"docs":{},"使":{"docs":{},"用":{"docs":{},"在":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"其":{"docs":{},"保":{"docs":{},"证":{"docs":{},"支":{"docs":{},"持":{"docs":{},"等":{"docs":{},"式":{"docs":{},"操":{"docs":{},"作":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"说":{"docs":{},"明":{"docs":{},"这":{"docs":{},"个":{"docs":{},"事":{"docs":{},"实":{"docs":{},",":{"docs":{},"当":{"docs":{},"你":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"时":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"也":{"docs":{},"就":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"“":{"docs":{},"任":{"docs":{},"何":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.005875440658049354}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}},",":{"docs":{},"那":{"docs":{},"这":{"docs":{},"个":{"docs":{},"数":{"docs":{},"相":{"docs":{},"当":{"docs":{},"于":{"docs":{},"基":{"docs":{},"数":{"docs":{},"和":{"1":{"0":{"docs":{},"^":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}},"docs":{}},"2":{"docs":{},"^":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}},"docs":{}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"]":{"docs":{},"[":{"6":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"7":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"w":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"a":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}}}}}},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.011029411764705883}},"e":{"docs":{},"t":{"docs":{},"g":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"s":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.16666666666666666}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.125}},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.125}}}}}}}},"方":{"docs":{},"法":{"docs":{},"​":{"docs":{},"​":{"docs":{},"块":{"docs":{},"可":{"docs":{},"以":{"docs":{},"由":{"docs":{},"一":{"docs":{},"个":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"后":{"docs":{},"跟":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"构":{"docs":{},"成":{"docs":{},",":{"docs":{},"用":{"docs":{},"大":{"docs":{},"括":{"docs":{},"号":{"docs":{},"括":{"docs":{},"起":{"docs":{},"来":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"由":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"后":{"docs":{},"跟":{"docs":{},"一":{"docs":{},"个":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}},"e":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414},"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.047619047619047616}},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"结":{"docs":{},"束":{"docs":{},"它":{"docs":{},"的":{"docs":{},"执":{"docs":{},"行":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}},"a":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_195":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_195","tf":0.08333333333333333}}}}}}}},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.021108179419525065}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},",":{"docs":{},"即":{"docs":{},"便":{"docs":{},"你":{"docs":{},"没":{"docs":{},"有":{"docs":{},"实":{"docs":{},"现":{"docs":{},"它":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},":":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"的":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"是":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"集":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"数":{"docs":{},"组":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"数":{"docs":{},"组":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"甚":{"docs":{},"至":{"docs":{},"于":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"任":{"docs":{},"何":{"docs":{},"其":{"docs":{},"他":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"数":{"docs":{},"据":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{},"同":{"docs":{},"样":{"docs":{},"的":{"docs":{},",":{"docs":{},"你":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"创":{"docs":{},"建":{"docs":{},"存":{"docs":{},"储":{"docs":{},"任":{"docs":{},"何":{"docs":{},"指":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018}}}}},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}}}}}}}}}}}}}},"k":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"e":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266}}},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.005875440658049354}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}},"k":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.018469656992084433}},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.0079155672823219}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"s":{"docs":{},"或":{"docs":{},"者":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"指":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"(":{"docs":{},"比":{"docs":{},"如":{"docs":{},"数":{"docs":{},"字":{"1":{"0":{"docs":{},"或":{"docs":{},"者":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"新":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"给":{"docs":{},"它":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"1":{"0":{"docs":{},"。":{"docs":{},"然":{"docs":{},"后":{"docs":{},",":{"docs":{},"声":{"docs":{},"明":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"字":{"docs":{},"是":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"并":{"docs":{},"将":{"docs":{},"它":{"docs":{},"的":{"docs":{},"值":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.011029411764705883}}}}}},"a":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}},"p":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.018469656992084433}}},"d":{"docs":{},"e":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}}}}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.010752688172043012},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.016442451420029897}}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.005376344086021506}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.011029411764705883}}}}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"整":{"docs":{},"数":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}}},"和":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}}}},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.005875440658049354},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.022326674500587545},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"d":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123}},"e":{"docs":{},"的":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"子":{"docs":{},"类":{"docs":{},"c":{"docs":{},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"接":{"docs":{},"收":{"docs":{},"两":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"半":{"docs":{},"径":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"实":{"docs":{},"现":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"和":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}}}}}},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}}}}}}}},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}},"e":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}}}}},"i":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":5.021505376344086},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}},",":{"docs":{},"?":{"docs":{},"后":{"docs":{},"面":{"docs":{},"的":{"docs":{},"东":{"docs":{},"西":{"docs":{},"都":{"docs":{},"会":{"docs":{},"被":{"docs":{},"忽":{"docs":{},"略":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"整":{"docs":{},"个":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}},"条":{"docs":{},"件":{"docs":{},"会":{"docs":{},"判":{"docs":{},"断":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"大":{"docs":{},"括":{"docs":{},"号":{"docs":{},"中":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"会":{"docs":{},"被":{"docs":{},"跳":{"docs":{},"过":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"不":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"会":{"docs":{},"将":{"docs":{},"值":{"docs":{},"赋":{"docs":{},"给":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}},"但":{"docs":{},"是":{"docs":{},"后":{"docs":{},"面":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"运":{"docs":{},"行":{"docs":{},"需":{"docs":{},"要":{"docs":{},"一":{"docs":{},"个":{"docs":{},"非":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"是":{"docs":{},"指":{"docs":{},"针":{"docs":{},"—":{"docs":{},"—":{"docs":{},"它":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"确":{"docs":{},"定":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"值":{"docs":{},"缺":{"docs":{},"失":{"docs":{},"。":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"可":{"docs":{},"选":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"话":{"docs":{},"请":{"docs":{},"不":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"解":{"docs":{},"析":{"docs":{},"可":{"docs":{},"选":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"生":{"docs":{},"命":{"docs":{},"周":{"docs":{},"期":{"docs":{},"中":{"docs":{},"判":{"docs":{},"断":{"docs":{},"是":{"docs":{},"否":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.008130081300813009}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.013452914798206279}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"e":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.005979073243647235}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.01645123384253819},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.0316622691292876},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.007050528789659225}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}}}}}}},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.005277044854881266}}}}}}}}}}}},"s":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{},"来":{"docs":{},"暗":{"docs":{},"示":{"docs":{},"值":{"docs":{},"缺":{"docs":{},"失":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"方":{"docs":{},"法":{"docs":{},"假":{"docs":{},"设":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},"者":{"docs":{},"知":{"docs":{},"道":{"docs":{},"并":{"docs":{},"记":{"docs":{},"得":{"docs":{},"对":{"docs":{},"特":{"docs":{},"殊":{"docs":{},"值":{"docs":{},"进":{"docs":{},"行":{"docs":{},"判":{"docs":{},"断":{"docs":{},"。":{"docs":{},"然":{"docs":{},"而":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.01838235294117647}}}}}}}}},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.016260162601626018}}}}},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}},";":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}},";":{"docs":{},")":{"docs":{},",":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"f":{"4":{"2":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}},"":{"docs":{},"":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"之":{"docs":{},"所":{"docs":{},"以":{"docs":{},"叫":{"docs":{},"这":{"docs":{},"个":{"docs":{},"名":{"docs":{},"字":{"docs":{},"是":{"docs":{},"因":{"docs":{},"为":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"人":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"当":{"docs":{},"做":{"docs":{},"输":{"docs":{},"入":{"docs":{},",":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"给":{"docs":{},"这":{"docs":{},"个":{"docs":{},"人":{"docs":{},"的":{"docs":{},"问":{"docs":{},"候":{"docs":{},"语":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"完":{"docs":{},"成":{"docs":{},"这":{"docs":{},"个":{"docs":{},"任":{"docs":{},"务":{"docs":{},",":{"docs":{},"你":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"输":{"docs":{},"入":{"docs":{},"参":{"docs":{},"数":{"docs":{},"-":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"做":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},",":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"包":{"docs":{},"含":{"docs":{},"给":{"docs":{},"这":{"docs":{},"个":{"docs":{},"人":{"docs":{},"问":{"docs":{},"候":{"docs":{},"语":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_174":{"ref":"chapter2/06_Functions.html#gitbook_174","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}},"大":{"docs":{},"于":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}},"按":{"docs":{},"照":{"docs":{},"字":{"docs":{},"母":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"后":{"docs":{},"出":{"docs":{},"现":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.04935370152761457},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.014336917562724014},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.011029411764705883},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.010554089709762533},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.024390243902439025},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.02391629297458894}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0029895366218236174}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.0055147058823529415}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.010752688172043012},"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633},"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.04878048780487805},"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.017937219730941704}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_188":{"ref":"chapter2/19_Nested_Types.html#gitbook_188","tf":0.024390243902439025}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.008968609865470852}},"”":{"docs":{},"。":{"docs":{},"不":{"docs":{},"是":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"中":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"等":{"docs":{},"式":{"docs":{},"符":{"docs":{},"(":{"docs":{},"=":{"docs":{},"=":{"docs":{},")":{"docs":{},"进":{"docs":{},"行":{"docs":{},"比":{"docs":{},"较":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"你":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"类":{"docs":{},"或":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"一":{"docs":{},"个":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"模":{"docs":{},"型":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"没":{"docs":{},"法":{"docs":{},"猜":{"docs":{},"到":{"docs":{},"对":{"docs":{},"于":{"docs":{},"这":{"docs":{},"个":{"docs":{},"类":{"docs":{},"或":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"而":{"docs":{},"言":{"docs":{},"“":{"docs":{},"等":{"docs":{},"于":{"docs":{},"”":{"docs":{},"的":{"docs":{},"意":{"docs":{},"思":{"docs":{},"。":{"docs":{},"正":{"docs":{},"因":{"docs":{},"如":{"docs":{},"此":{"docs":{},",":{"docs":{},"这":{"docs":{},"部":{"docs":{},"分":{"docs":{},"代":{"docs":{},"码":{"docs":{},"不":{"docs":{},"能":{"docs":{},"可":{"docs":{},"能":{"docs":{},"保":{"docs":{},"证":{"docs":{},"工":{"docs":{},"作":{"docs":{},"于":{"docs":{},"每":{"docs":{},"个":{"docs":{},"可":{"docs":{},"能":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.004700352526439483}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0011750881316098707}}},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.003676470588235294}}}}}}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/22_Generics.html#gitbook_190":{"ref":"chapter2/22_Generics.html#gitbook_190","tf":0.004484304932735426}}}}}},"y":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_167":{"ref":"chapter1/02_a_swift_tour.html#gitbook_167","tf":0.0035252643948296123},"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_171":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_171","tf":0.001838235294117647}}}}}}}}},"_":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0035842293906810036}}},"z":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018}},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/01_The_Basics.html#gitbook_170":{"ref":"chapter2/01_The_Basics.html#gitbook_170","tf":0.0017921146953405018},"chapter2/07_Closures.html#gitbook_175":{"ref":"chapter2/07_Closures.html#gitbook_175","tf":0.002638522427440633}}}}}}},"length":1395},"corpusTokens":["0","0,$1,$2","0..3","0..somecontainer.count","0..time","0.0","0.0125","0.1","0.14159","0.25","000123.456","0b","0b10001","0o","0o21","0x","0x11","0xc.3p0","0xfp-2","0xfp2","0x)。小数点两边必须有至少一个十进制数字(或者是十六进制的数字)。浮点原始值还有一个可选的指数,在十进制浮点数中通过大写或者小写的e来指定,在十六进制浮点数中通过大写或者小写的p","0为fals","0为true的时候代码运行才会继续,也就是说,当age的值非负的时候。如果age的值是负数,就像代码中那样,ag","0,这时闭包会将字符串输出,而map","1","1.21875e1","1.25","1.25e-2","1.25e2","10","100","103","107","10^-2","10^2","10中,如果number为16,则返回6,58返回8,510返回0","11","111","12","12.1875","123","125.0","128054","128054,是一个十六进制1f436","13","144","15","159","16","16,58,510","16变成了1,58变成了5,510变成了51","17","182","19","1_000_000","1_000_000.000_000_1","1的比较结果是bool类型,所以第二个例子可以通过类型检查。类似i","2","2.5","20","200","2014","21","240","25","255","2^-2","2^2","2_000","3","3.0","3.1","3.14159","3.14159,0.1和-273.15","3.59","3.69","3.75","3.79","30","32位平台上,int和int32","32位平台上,uint和uint32","33","39","3可以直接和原始值0.14159","3没有显式声明类型,而表达式中出现了一个浮点原始值,所以表达式会被推测为doubl","4","4.75会变成4,-3.9会变成3","40","404","42","42和-23","42和3.14159","42并且没有标明类型,swift","43","4个string","5","5.2","50","510","55357","56374","58","597","6","60.0","64位平台上,int和int64","64位平台上,uint和uint64","68","69105","7","7.5","7.simpledescript","70","70.0","75","8","87","8:09","8、16、32和64","8位无符号整数类型是uint8,32位有符号整数类型是int32","9","9.3","9.9","94","_","a.adjust","a.simpledescript","abov","ac","ace.toraw","acerawvalu","act","act1scenecount","action","actualnumb","actualnumber常量可以在if语句的第一个分支中使用。它已经被可选包含的值初始化过,所以不需要再使用!后缀来获取它的值。在这个例子中,actualnumb","ad","add","addon","addone(numb","adescript","adjust","adopt","ag","again","alex","alia","alik","allitemsmatch","allitemsmatch(stackofstr","allitemsmatch的泛型函数,用来检查是否两个container单例包含具有相同顺序的相同items。如果匹配到所有的items,那么返回一个为true的boolean","allitemsmatch首先检查两个容器是否拥有同样数目的items,如果他们的items数目不同,没有办法进行匹配,函数就会fals","allow","alsoincrementbyten","alwai","amount","andrea","anna","anoth","anothercontain","anothercontainer.count","anothercontainer[i","anothercontainer中的item","anothercontainer是一个c2","anotheremptystr","anotherint","anotherpi","anotherproperti","anotherstr","ant","anycommonel","anycommonelements([1","api","app","append(item","append方法添加一个新item","appl","applese","applesummari","approach","arc","arc为了能帮助你管理内存,需要更多的关于你的代码之间关系的信息。本章描述了这些情况,并且为你示范怎样启用arc","arc会分配一大块内存用来储存实例的信息。内存中会包含实例的类型信息,以及这个实例所有相关属性的值。此外,当实例不再被使用时,arc","arc会跟踪和计算每一个类实例正在被多少属性,常量和变量所引用。哪怕实例的引用数为一,arc","area","argument","arrai","arrayofstr","array和dictionari","array性质的items存储值。stack提供两个方法:push和pop,从栈中压进一个值和移除一个值。这些方法标记为可变的,因为他们需要修改(或转换)结构体的item","ascii","assert(ag","assert函数来写一个断言。给assert函数传入一个结果为true或者false的表达式以及一条信息,当表达式为fals","assumedstr","attempt","audiosampl","audiosample.min","audiosample被定义为uint16的一个别名。因为它是别名,audiosample.min实际上是uint16.min,所以会给maxamplitudefound赋一个初值0","automat","avail","b","b.adjust","b.simpledescript","backward","backwards(s1","barri","bdescript","behavior","binaryinteg","blackheart","blackjackcard","blackjackcard(rank","blackjackcard(二十一点),用来模拟blackjackcard中的扑克牌点数。blackjackcard结构体包含2个嵌套定义的枚举类型suit","blackjackcard.suit.hearts.toraw","blackjackcard是一个没有自定义构造函数的结构体,在memberwis","blackjackcard结构体自身有两个属性—rank与suit,也同样定义了一个计算属性description,description属性用rank和suit的中内容来构建对这张扑克牌名字和数值的描述,并用可选类型second","blackjackcard规则中,ace牌可以表示1或者11,ace牌的这一特征用一个嵌套在枚举型rank的结构体valu","block","blue","bodi","bonjour","bool","boolean","bool。布尔值是指逻辑,因为它们只能是真或者假。swift","bool类型的地方使用了非布尔值,swift","bool)默认都是hash","both","bottl","brian","c","c1","c1.itemtyp","c1必须遵循contain","c1的itemtype同样是c2的itemtyp","c1的itemtype必须遵循equat","c2","c2.itemtyp","c2必须遵循contain","call","cannotbeneg","captain","captur","capulet'","caputur","card","card(rank","card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit","carriag","case","cat","catfish","celeri","cell","chang","charact","character1","character2","characterpluscharact","characterplusstr","characters)字符串字面量初始化空字符串字符串可变性字符串是值类型使用字符(characters)计算字符数量连接字符串和字符字符串插值比较字符串字符串相等前缀/后缀相等大写和小写字符串unicodeunicod","check","chees","chri","class","closur","club","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","cocoa里的nslog函数一样,println","code","codeunit","collect","comment","compile-tim","concept","condit","condition(item","conform","consid","constant","constantnam","constantstr","constraints][8","contain","container协议声明了一个itemtype的关联类型,写作typealia","container协议的例子,定义了一个itemtyp","container协议的泛型stack","container协议的类型必须指定存储在其里面的值类型,必须保证只有正确类型的items可以加进容器里,必须明确可以通过其下标返回item","container协议需要一个方法指定容器里的元素将会保留,而不需要知道特定容器的类型。container协议需要指定任何通过append","control","convert","convertednumb","convertedrank","convertedrank.simpledescript","count","countel","countelements(unusualmenageri","counter","counter.incrementby(2","count属性获取容器里items的数量,并返回一个int","cuatro","cucumb","current","currentloginattempt","cycl","c的兼容性的限制。swift","d","dai","daniella","decimaldoubl","decimalinteg","default","defin","definitestr","deinit","descript","diamond","dictionary(arrai","equatable类型都可以安全的使用在findindex函数中,因为其保证支持等式操作。为了说明这个事实,当你定义一个函数时,你可以写一个equat","equatable,也就意味着“任何t类型都遵循equat","equilater","equilateraltriangl","equilateraltriangle(sidelength","equival","error","error(error","error(str","everyth","ewa","eww","exampl","exampleprotocol","exist","explicitdoubl","exponentdoubl","exp,那这个数相当于基数和10^exp","exp,那这个数相当于基数和2^exp","extens","extension][6","extension][7","failur","fals","fibonacci","findindex([\"mik","findindex([3.14159","findindex(arrai","findindex中这个单个类型参数写做:t","findindex函数现在则可以成功的编译过,并且作用于任何遵循equatable的类型,如double或str","findindex,用某个类型t","findstringindex","findstringindex(arrai","findstringindex(str","findstringindex的泛型版本findindex。请注意这个函数仍然返回int","findstringindex的非泛型函数,该函数功能是去查找包含一给定string值的数组。若查找到匹配的字符串,findstringindex函数返回该字符串在数组中的索引值(int),反之则返回nil","first","firstforloop","five","fiveeight","fiveonezero","float","float并指定初始值为4","float表示32","for-in","for-in循环和半闭区间操作(..)来迭代somecontainer中的所有items。对于每个item,函数检查是否somecontainer中的item不等于对应的anothercontainer中的item,如果这两个items不等,则这两个容器不匹配,返回fals","force-unwrap","forincr","for—that","found","found"","found")元组把一个int值和一个str","foundat","foundindex","four","friar","friendlywelcom","friendlywelcome的值从"hello!"改为了"bonjour!"","fromthetop","fruit","fruitsummari","func","function","func作为前缀。指定函数返回类型时,用返回箭头->","func来声明一个函数,使用名字和参数来调用函数。使用->","g","gener","getgaspric","getter","getter-claus","getter-sett","getter-setter-block","getter-setter方法​​块可以由一个getter子句后跟一个可选的setter子句构成,用大括号括起来,或者由一个setter子句后跟一个gett","getters和sett","give","goe","good","grammar","great","greet","greet(\"bob","greet(nam","greeting被调用,该函数结束它的执行并返回greet","gt","guide,即便你没有实现它。例如:swift的array和dictionary类型都是泛型集。你可以创建一个int数组,也可创建一个string数组,或者甚至于可以是任何其他swift的类型数据数组。同样的,你也可以创建存储任何指定类型的字典(dictionari","hall","hasanymatches(list","hasanymatches(numb","hashtabl","hasprefix","hasprefix/hassuffix","heart","hearts.simpledescript","heartsdescript","heartssymbol","hearts成员:给hearts常量赋值时,枚举成员suit.hearts需要用全名来引用,因为常量没有显式指定类型。在switch里,枚举成员使用缩写.hearts来引用,因为self的值已经知道是一个suit","hello","help","here","here’","hexadecimaldoubl","hexadecimalinteg","hierarchi","highland","horribl","hors","http","http200statu","http200status.descript","http200status.statuscod","http404error","http404error.0","http404error.1","if和let来处理值缺失的情况。有些变量的值是可选的。一个可选的值可能是一个具体的值或者是nil","if和switch来进行条件操作,使用for-in、for、while和do-whil","if和while语句中来对可选的值进行判断并把值赋给一个常量或者变量。if和whil","if语句中,条件必须是一个布尔表达式——这意味着像if","if语句来判断一个可选是否包含值。如果可选有值,结果是true;如果没有值,结果是fals","if语句的第一个分支中操作actualnumber的值,你可以改成if","imagin","implement","implicitdoubl","implicitinteg","implicitli","import","in-out参数交换a和b的值,这两个参数被描述为[in-out类型参数][1","increment","increment(7","incrementby(amount","incrementbyseven","incrementbysevn","incrementbyten","incrementor","index","indic","individualscor","inform","init(nam","init(s","init(sidelength","initi","inout","inspir","instruct","int","int(pi","int)或者(str","int8","int8.max","int8类型的常量或者变量可以存储的数字范围是-128~127,uint8类型的常量或者变量能存储的数字范围是0~255","integ","integerpi","interestingnumb","interpolation)的方式把常量名或者变量名当做占位符加入到长字符串中,swift会用当前常量或变量的值替换这些占位符。将常量或变量名放入反斜杠符加一对圆括号中"\\()"","intstack","intstack指定了container的实现,适用的itemtype被用作int类型。对于这个contain","intstack类型只能用于int值,不过,其对于定义一个泛型stack","intstack类型实现了container协议的所有三个要求,在intstack","intstack类型的非泛型版本,适用于遵循contain","intuint浮点数类型安全和类型推测数值类原始值数值类型转换整数转换整数和浮点数转换类型别名布尔值元组可选if","int就够了。这可以提高代码一致性和可复用性。即使是在32位平台上,int可以存储的整数范围也可以达到-2147483648~2147483647","int是整型;double和float是浮点型;bool是布尔型;string是字符串。swift","int类型更大或者更小的数字。swift","int索引值下标可以检索到每一个item","int这一行,一切仍旧可以工作,因为它清楚的知道itemtyp","int,将抽象的itemtype类型转换为具体的int","io","isempti","item","items.append(item","items.count","items.removelast","items[i","items。这个需求通过一个类型约束和wher","items的属性,使用空的t","itemtyp","itemtype。th","item是如何存储的或何种类型是允许的。这个协议只指定三个任何遵循contain","item的push方法,该参数必须是t","jack","john","justoveronemillion","justthestatuscod","kayle","kei","keytyp","kind","king","knowledg","koala","label","lambda","languag","languagenam","larger","largest","last","lawrence'","left","length","less","lessthanten","lessthanten(numb","let来声明常量,使用var","let来声明常量,用var","lh","lhsitem","librari","library'","line","list","liter","llama","log","look","loop","lot","lowercasestr","m","made","main","make","makeincrement","makeincrementor","makeincrementor(forincr","malcolm","manag","mansion","map","match","maxamplitudefound","maximumnumberofloginattempt","maximumnumberofloginattempts或者welcomemessage)和一个指定类型的值(比如数字10或者字符串hello","maximumnumberofloginattempts的新常量,并给它一个值10。然后,声明一个名字是currentloginattempt的变量并将它的值初始化为0","maxvalu","meaningoflif","mechan","messag","method","minvalu","min和max","model","more","morn","multilin","multipl","multipli","mutat","myconst","myvari","myvariable是一个整数(integ","n","name","namedshap","namedshape的另一个子类circle,构造器接收两个参数,一个是半径一个是名称,实现area和describ","navig","need","nest","newvalu","newvalue.sidelength","newvalue。你可以在set","nil","nil不是指针——它是一个确定的值,用来表示值缺失。任何类型的可选都可以被设置为nil","nil的话请不要使用隐式解析可选。如果你需要在变量的生命周期中判断是否是nil","nil,?后面的东西都会被忽略,并且整个表达式返回nil","nil,nil","nil,但是后面的代码运行需要一个非nil","nil,条件会判断为false,大括号中的代码会被跳过。如果不是nil,会将值赋给let","nine","nn","nnnn","nnnnnnnn","none","normal","normal.lowercasestr","normal.uppercasestr","note","noth","now","nsmutablestr","nsnotfound)来暗示值缺失。这种方法假设方法的调用者知道并记得对特殊值进行判断。然而,swift","nsstring","number","numberofsid","numberoftim","numbers.map","o","objc","objective-c","occup","occupations[\"jayn","octalinteg","ok","on","onemillion","onesix","oper","opt","option","optionalnam","optionalname改成nil,greeting会是什么?添加一个else语句,当optionalname是nil时给greet","optionalsquar","optionalsquare?.sidelength","optionalstr","optionalvalue(item","report","result","result(str","result(sunris","return","returnfifteen","returntyp","return参数名称缩写运算符函数trail","revers","rh","rhsitem","romeoandjuliet","room","runingtot","runningtot","s1","s2","s2),backward","same","samequot","sandwich","sayhello(personnam","sayhelloagain(personnam","sayhello。上面的例子展示的是用"anna"和"brian"","sayhello函数时,在圆括号中传给它一个string类型的实参。因为这个函数返回一个string类型的值,sayhello可以被包含在println","sayhello的函数体中,先定义了一个新的名为greeting的string常量,同时赋值了给personname的一个简单问候消息。然后用return关键字把这个问候返回出去。一旦return","scalar","scene","scene.hasprefix(\"act","score","second","secondforloop","see","self","self.nam","self.push(item","self.sidelength","self.toraw","self被用来区别实例变量。当你创建实例的时候,像传入函数参数一样给类传入构造器的参数。每个属性都需要赋值——无论是通过声明(就像numberofsides)还是通过构造器(就像nam","sequenc","serverrespons","serverresponse.error(\"out","serverresponse.result(\"6:00","serverresponsecod","serverresponse和switch","set","setter","setter-claus","setter-clause­opt","seven","shape","shape.numberofsid","shape.simpledescript","shapedescript","shape类缺少了一些重要的东西:一个构造函数来初始化类实例。使用init","shoppinglist","shoppinglist[1","shouti","side","sidelength","simpl","simpleclass","simpledescript","simplestructur","simplestructure时候mutating关键字用来标记一个会修改结构体的方法。simpleclass","six","size","snail","some(100","some(t","someclass","somecontain","somecontainer.count","somecontainer[i","somecontainer中item","somecontainer中的item","somecontainer和anothercontainer。somecontainer参数是类型c1,anothercontainer参数是类型c2。c1和c2","somecontainer和anothercontainer包含相同的item","somecontainer是一个c1","somefunction(somet","somestr","sometype(ofinitialvalu","someu","sort","sort([1","sort(nam","soup","spade","sparklingheart","spici","squar","square(sidelength","square.sidelength","stack","stack(栈)。一个栈是一系列值域的集合,和array(数组)相似,但其是一个比swift的array类型更多限制的集合。一个数组可以允许其里面任何位置的插入/删除操作,而栈,只允许,只允许在集合的末端添加新的项(如同push一个新值进栈)。同样的一个栈也只能从末端移除项(如同pop","stack(inout","swaptwovalues例子中,节点类型t是一种类型参数的示例。类型参数指定并命名为一个节点类型,并且紧随在函数名后面,并用一对尖括号括起来(如)。这个尖括号告诉swift那个t是swaptwovalues函数所定义的一个节点类型。因为t是一个节点,swift不会去查找每一个命名为t","t.generatortype.el","tast","tasti","tea","teamscor","temporarya","ten","terminolog","terrapin","test","test.area","test.simpledescript","theaceofspad","theaceofspades.descript","three","threedescript","threeofspad","threeofspades.simpledescript","threeofspadesdescript","three的值被用来创建一个doubl","time","todai","toint方法可能会失败,所以它返回一个可选的int,而不是一个int。一个可选的int被写作int?而不是int。问号暗示包含的值是可选,也就是说可能包含int值也可能不包含值。(不能包含其他任何值比如bool值或者string值。只能是int","toint方法来尝试将一个string转换成int","toobig","toraw和fromraw","touch","trail","tre","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","true","true。从字面意思来说,断言“断言”一个条件是否为真。你可以使用断言来保证在运行其他代码之前,某些重要的条件已经被满足。如果条件判断为true,代码运行会继续进行;如果条件判断为fals","true和fals","tuesdai","tulip","tupl","turnip","turnipsaredelici","two","twothousand","twothousandandon","twothousand类型是uint16,然而常量one类型是uint8。它们不能直接相加,因为它们类型不同。所以要调用uint16(one)来创建一个新的uint16数字并用on","type","type-saf","typealia","types中知道结构体有默认的成员构造函数,所以你可以用默认的initializer去初始化新的常量theaceofspad","t分别代表tnt和string","t定义了一个名为“某种类型t”的节点提供给后来用。这种将来类型可以在结构体的定义里任何地方表示为“t”。在这种情况下,t","t来表示)来代替实际类型名(如int、string或double)。节点类型名并不是表示t必须是任何类型,但是其规定a和b必须是同一类型的t,而不管t表示任何类型。只有swaptwovalues函数在每次调用时所传入的实际类型决定了t","t被用作append方法的item参数和下标的返回类型。swift因此可以推断出被用作这个特定容器的itemtype的t","t,有一个需要t必须是someclass子类的类型约束;第二个类型参数u,有一个需要u必须遵循someprotocol","u","u+0024","u+0061","u+1f436","u+1f496","u+2665","u+d83d","u+dc36","u.generatortype.el","u0001f496","u2665","uin8","uinavigationcontrol","uint","uint16","uint16(on","uint16有一个构造器,可以接受一个uint8类型的值,所以这个构造器可以用现有的uint8来创建一个新的uint16。注意,你并不能传入任意类型的值,只能传入uint16","uint16,可以进行相加。目标常量twothousandandone的类型被推测为uint16,因为它是两个uint16","uint32","uint8","uint8.max","uint8.min","uint,除非你真的需要存储一个和当前平台原生字长相同的无符号整数。除了这种情况,最好使用int,即使你要存储的值已知是非负的。统一使用int","uncom","undefinedundefin","unicod","unicodescalar","unicodescalarview","unnnn","unnnnnnnn","uno","unown","unusualmenageri","unwrap","uppercamelcas","uppercasestr","us","utf-16","utf-8","utf-8utf-16unicod","utf16","utf16count","utf16view","utf8","utf8view","valu","values(first","valuetofind","valuetofind”。不是所有的swift中的类型都可以用等式符(==)进行比较。例如,如果你创建一个你自己的类或结构体来表示一个复杂的数据模型,那么swift没法猜到对于这个类或结构体而言“等于”的意思。正因如此,这部分代码不能可能保证工作于每个可能的类型t","var","variabl","variablestr","veget","vegetablecom","veri","verona","view","water","watercress","we'r","web","welcom","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","whenev","where语句作为一个类型参数队列的一部分。一个where语句使你能够要求一个关联类型遵循一个特定的协议,以及(或)那个特定的类型参数和关联类型可以是相同的。你可写一个where语句,通过紧随放置wher","where语句的一部分,写在关键字wher","where,只在冒号后面写接口或者类名。<t","whisper","width","widthlabel","willset","willset和didset","wiseword","work","world","world"","written","wwdc","x","x.hassuffix(\"pepp","x24","xcode","xnn","y","yensign","z","zero"],"pipeline":["trimmer","stopWordFilter","stemmer"]} \ No newline at end of file