diff --git a/chapter2/04_Collection_Types.html b/chapter2/04_Collection_Types.html
new file mode 100644
index 00000000..288d968b
--- /dev/null
+++ b/chapter2/04_Collection_Types.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
集合类型 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/05_Control_Flow.html b/chapter2/05_Control_Flow.html
new file mode 100644
index 00000000..37f99886
--- /dev/null
+++ b/chapter2/05_Control_Flow.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
控制流 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/06_Functions.html b/chapter2/06_Functions.html
new file mode 100644
index 00000000..b1cc9d4e
--- /dev/null
+++ b/chapter2/06_Functions.html
@@ -0,0 +1,656 @@
+
+
+
+
+
+
+
+
函数 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 函数(Functions)
+函数是用来完成特定任务的独立的代码块。你给一个函数起一个合适的名字,用来标示函数做什么,并且当函数需要执行的时候,这个名字会被“调用”。
+Swift统一的函数语法足够灵活,可以用来表示任何函数,包括从最简单的没有参数名字的C风格函数,到复杂的带局部和外部参数名的Objective-C风格函数。参数可以提供默认值,以简化函数调用。参数也可以即当做传入参数,也当做传出参数,也就是说,一旦函数执行结束,传入的参数值可以被修改。
+在Swift中,每个函数都有一种类型,包括函数的参数值类型和返回值类型。你可以把函数类型当做任何其他普通变量类型一样处理,这样就可以更简单地把函数当做别的函数的参数,也可以从其他函数中返回函数。函数的定义可以写在在其他函数定义中,这样可以在嵌套函数范围内实现功能封装。
+函数的定义与调用
+当你定义一个函数时,你可以定义一个或多个有名字和类型的值,作为函数的输入(称为参数,parameters),也可以定义某种类型的值作为函数执行结束的输出(称为返回类型)。
+每个函数有个函数名,用来描述函数执行的任务。要使用一个函数时,你用函数名“调用”,并传给它匹配的输入值(称作实参,arguments)。一个函数的实参必须与函数参数表里参数的顺序一致。
+在下面例子中的函数叫做"greetingForPerson",之所以叫这个名字是因为这个函数用一个人的名字当做输入,并返回给这个人的问候语。为了完成这个任务,你定义一个输入参数-一个叫做personName的String值,和一个包含给这个人问候语的String类型的返回值:
+ func sayHello(personName: String) -> String {
+ let greeting = "Hello, " + personName + "!"
+ return greeting
+ }
+所有的这些信息汇总起来成为函数的定义,并以func作为前缀。指定函数返回类型时,用返回箭头->(一个连字符后跟一个右尖括号)后跟返回类型的名称的方式来表示。
+该定义描述了函数做什么,它期望接收什么和执行结束时它返回的结果是什么。这样的定义使的函数可以在别的地方以一种清晰的方式被调用:
+ println(sayHello("Anna"))
+ // prints "Hello, Anna!"
+ println(sayHello("Brian"))
+ // prints "Hello, Brian!
+调用sayHello函数时,在圆括号中传给它一个String类型的实参。因为这个函数返回一个String类型的值,sayHello可以被包含在println的调用中,用来输出这个函数的返回值,正如上面所示。
+在sayHello的函数体中,先定义了一个新的名为greeting的String常量,同时赋值了给personName的一个简单问候消息。然后用return关键字把这个问候返回出去。一旦return greeting被调用,该函数结束它的执行并返回greeting的当前值。
+你可以用不同的输入值多次调用sayHello。上面的例子展示的是用"Anna"和"Brian"调用的结果,该函数分别返回了不同的结果。
+为了简化这个函数的定义,可以将问候消息的创建和返回写成一句:
+ func sayHelloAgain(personName: String) -> String {
+ return "Hello again, " + personName + "!"
+ }
+ println(sayHelloAgain("Anna"))
+ // prints "Hello again, Anna!
+函数参数与返回值
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/07_Closures.html b/chapter2/07_Closures.html
new file mode 100644
index 00000000..2e9e8053
--- /dev/null
+++ b/chapter2/07_Closures.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
闭包 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/08_Enumerations.html b/chapter2/08_Enumerations.html
new file mode 100644
index 00000000..6f28c316
--- /dev/null
+++ b/chapter2/08_Enumerations.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
枚举 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/09_Classes_and_Structures.html b/chapter2/09_Classes_and_Structures.html
new file mode 100644
index 00000000..58859e95
--- /dev/null
+++ b/chapter2/09_Classes_and_Structures.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
类和结构体 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/10_Properties.html b/chapter2/10_Properties.html
new file mode 100644
index 00000000..73848f0d
--- /dev/null
+++ b/chapter2/10_Properties.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
属性 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/11_Methods.html b/chapter2/11_Methods.html
new file mode 100644
index 00000000..f75728bc
--- /dev/null
+++ b/chapter2/11_Methods.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
方法 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/12_Subscripts.html b/chapter2/12_Subscripts.html
new file mode 100644
index 00000000..f4c96cd2
--- /dev/null
+++ b/chapter2/12_Subscripts.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
下标 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/13_Inheritance.html b/chapter2/13_Inheritance.html
new file mode 100644
index 00000000..24916324
--- /dev/null
+++ b/chapter2/13_Inheritance.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
继承 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/14_Initialization.html b/chapter2/14_Initialization.html
new file mode 100644
index 00000000..b62a7241
--- /dev/null
+++ b/chapter2/14_Initialization.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
构造函数 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/15_Deinitialization.html b/chapter2/15_Deinitialization.html
new file mode 100644
index 00000000..988dfb99
--- /dev/null
+++ b/chapter2/15_Deinitialization.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
析构函数 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/16_Automatic_Reference_Counting.html b/chapter2/16_Automatic_Reference_Counting.html
new file mode 100644
index 00000000..88b3fcb2
--- /dev/null
+++ b/chapter2/16_Automatic_Reference_Counting.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
自动引用计数 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/17_Optional_Chaining.html b/chapter2/17_Optional_Chaining.html
new file mode 100644
index 00000000..afad0d35
--- /dev/null
+++ b/chapter2/17_Optional_Chaining.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
可选链 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/18_Type_Casting.html b/chapter2/18_Type_Casting.html
new file mode 100644
index 00000000..6fd08ae3
--- /dev/null
+++ b/chapter2/18_Type_Casting.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
类型检查 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/19_Nested_Types.html b/chapter2/19_Nested_Types.html
new file mode 100644
index 00000000..07c85781
--- /dev/null
+++ b/chapter2/19_Nested_Types.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
嵌套类型 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/20_Extensions.html b/chapter2/20_Extensions.html
new file mode 100644
index 00000000..0eabdf5d
--- /dev/null
+++ b/chapter2/20_Extensions.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
扩展 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/21_Protocols.html b/chapter2/21_Protocols.html
new file mode 100644
index 00000000..4bd5a41e
--- /dev/null
+++ b/chapter2/21_Protocols.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
接口 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/22_Generics.html b/chapter2/22_Generics.html
new file mode 100644
index 00000000..517970f4
--- /dev/null
+++ b/chapter2/22_Generics.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
泛型 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/23_Advanced_Operators.html b/chapter2/23_Advanced_Operators.html
new file mode 100644
index 00000000..89a0231b
--- /dev/null
+++ b/chapter2/23_Advanced_Operators.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
高级操作符 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/basic_operators.html b/chapter2/basic_operators.html
deleted file mode 100644
index 71f95970..00000000
--- a/chapter2/basic_operators.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-
-
-
基本操作符 | Swift 编程语言
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/chapter2/chapter2.html b/chapter2/chapter2.html
new file mode 100644
index 00000000..dacf64b6
--- /dev/null
+++ b/chapter2/chapter2.html
@@ -0,0 +1,630 @@
+
+
+
+
+
+
+
+
Swift 教程 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Swift 教程
+本章介绍了 Swift 的各种特性及其使用方法,是全书的核心部分。
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter2/the_basics.html b/chapter2/the_basics.html
deleted file mode 100644
index 2bafa340..00000000
--- a/chapter2/the_basics.html
+++ /dev/null
@@ -1,294 +0,0 @@
-
-
-
-
-
-
-
-
Swift 教程 | Swift 编程语言
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Swift 教程
-本章介绍了 Swift 的各种特性及其使用方法,是全书的核心部分。
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/chapter3/01_About_the_Language_Reference.html b/chapter3/01_About_the_Language_Reference.html
new file mode 100644
index 00000000..9bb7923a
--- /dev/null
+++ b/chapter3/01_About_the_Language_Reference.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
关于语言参考 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter3/02_Lexical_Structure.html b/chapter3/02_Lexical_Structure.html
new file mode 100644
index 00000000..55c742b3
--- /dev/null
+++ b/chapter3/02_Lexical_Structure.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
词法结构 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter3/03_Types.html b/chapter3/03_Types.html
new file mode 100644
index 00000000..04517c34
--- /dev/null
+++ b/chapter3/03_Types.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
类型 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter3/04_Expressions.html b/chapter3/04_Expressions.html
new file mode 100644
index 00000000..218a3cdc
--- /dev/null
+++ b/chapter3/04_Expressions.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
表达式 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter3/05_Declarations.html b/chapter3/05_Declarations.html
new file mode 100644
index 00000000..f95eab21
--- /dev/null
+++ b/chapter3/05_Declarations.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
声明 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter3/06_Attributes.html b/chapter3/06_Attributes.html
new file mode 100644
index 00000000..7bdbf866
--- /dev/null
+++ b/chapter3/06_Attributes.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
属性 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter3/07_Patterns.html b/chapter3/07_Patterns.html
new file mode 100644
index 00000000..d57bb0c0
--- /dev/null
+++ b/chapter3/07_Patterns.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
模式 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter3/08_Generic_Parameters_and_Arguments.html b/chapter3/08_Generic_Parameters_and_Arguments.html
new file mode 100644
index 00000000..ceb0ec2d
--- /dev/null
+++ b/chapter3/08_Generic_Parameters_and_Arguments.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
泛型参数 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter3/09_Summary_of_the_Grammar.html b/chapter3/09_Summary_of_the_Grammar.html
new file mode 100644
index 00000000..9726b5d7
--- /dev/null
+++ b/chapter3/09_Summary_of_the_Grammar.html
@@ -0,0 +1,618 @@
+
+
+
+
+
+
+
+
语法总结 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/chapter3/chapter3.html b/chapter3/chapter3.html
new file mode 100644
index 00000000..d5edd2a6
--- /dev/null
+++ b/chapter3/chapter3.html
@@ -0,0 +1,622 @@
+
+
+
+
+
+
+
+
语言参考 | Swift 编程语言
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/index.html b/index.html
index 9474b9f7..408292c3 100644
--- a/index.html
+++ b/index.html
@@ -15,7 +15,7 @@
-
+
@@ -44,7 +44,7 @@
-
+
-
+
Swift 编程语言
Swift 是苹果在 WWDC 2014 上发布的一款全新的编程语言,本书译自苹果官方的 Swift 教程《The Swift Programming Language》。
@@ -253,7 +589,7 @@
-
+
diff --git a/manifest.appcache b/manifest.appcache
index d0064a40..b4911b6e 100644
--- a/manifest.appcache
+++ b/manifest.appcache
@@ -1,15 +1,45 @@
CACHE MANIFEST
-# Revision 1401919801866
+# Revision 1401935155502
CACHE:
index.html
-chapter1/README.html
-chapter1/a_swift_tour.html
-chapter1/swift.html
-chapter2/article_1.html
-chapter2/basic_operators.html
-chapter2/strings_and_characters.html
-chapter2/the_basics.html
+chapter1/01_swift.html
+chapter1/02_a_swift_tour.html
+chapter1/chapter1.html
+chapter2/13_Inheritance.html
+chapter2/01_The_Basics.html
+chapter2/03_Strings_and_Characters.html
+chapter2/04_Collection_Types.html
+chapter2/05_Control_Flow.html
+chapter2/06_Functions.html
+chapter2/07_Closures.html
+chapter2/08_Enumerations.html
+chapter2/09_Classes_and_Structures.html
+chapter2/10_Properties.html
+chapter2/11_Methods.html
+chapter2/12_Subscripts.html
+chapter2/02_Basic_Operators.html
+chapter2/14_Initialization.html
+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/21_Protocols.html
+chapter2/22_Generics.html
+chapter2/23_Advanced_Operators.html
+chapter2/chapter2.html
+chapter3/01_About_the_Language_Reference.html
+chapter3/02_Lexical_Structure.html
+chapter3/03_Types.html
+chapter3/04_Expressions.html
+chapter3/05_Declarations.html
+chapter3/06_Attributes.html
+chapter3/07_Patterns.html
+chapter3/08_Generic_Parameters_and_Arguments.html
+chapter3/09_Summary_of_the_Grammar.html
+chapter3/chapter3.html
gitbook/app.js
gitbook/fonts/anonymouspro/400.woff
gitbook/fonts/anonymouspro/400i.woff
diff --git a/search_index.json b/search_index.json
index 22aa40d1..7a797dbb 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_5":["2014","languag","program","swift","undefinedundefin","wwdc"],"chapter1/README.html#gitbook_6":["swift","undefinedundefin"],"chapter1/a_swift_tour.html#gitbook_7":["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/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"],"chapter2/article_1.html#gitbook_9":["0","0.0","10","3.14159","array和dictionari","bonjour","c","chang","cocoa里的nslog函数一样,println","compile-tim","current","currentloginattempt","dogcow","error","friendlywelcom","friendlywelcome的值从"hello!"改为了"bonjour!"","hello","interpolation)的方式把常量名或者变量名当做占位符加入到长字符串中,swift会用当前常量或变量的值替换这些占位符。将常量或变量名放入反斜杠符加一对圆括号中"\\()"","int是整型;double和float是浮点型;bool是布尔型;string是字符串。swift","io","languagenam","let来声明常量,用var","maximumnumberofloginattempt","maximumnumberofloginattempts或者welcomemessage)和一个指定类型的值(比如数字10或者字符串hello","maximumnumberofloginattempts的新常量,并给它一个值10。然后,声明一个名字是currentloginattempt的变量并将它的值初始化为0","nil","now","objective-c","option","os","print","println","println(\"th","println(\"thi","println(friendlywelcom","println函数输出传入的str","println是一个用来输出的全局函数,输出的内容会在最后带换行。如果你用xcode,println将会输出内容到“console”面板上。(另一种函数叫print","string","string”的意思是“可以存储任意str","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","swift","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","swift用字符串插值(str","tupl","undefinedundefin","unicod","valu","var","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","x","y","z"],"chapter2/basic_operators.html#gitbook_10":["undefinedundefin"],"chapter2/strings_and_characters.html#gitbook_11":["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"。swift","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/the_basics.html#gitbook_12":["swift","undefinedundefin"]},"length":8},"tokenStore":{"root":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.01410105757931845},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},".":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353}}},"docs":{},".":{"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"1":{"0":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}},"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"1":{"1":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"2":{"8":{"0":{"5":{"4":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},",":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"十":{"docs":{},"六":{"docs":{},"进":{"docs":{},"制":{"1":{"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}},"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"4":{"4":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"5":{"9":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"6":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"8":{"2":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.009400705052878966},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.01841620626151013}}},"2":{"0":{"1":{"4":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.1111111111111111}}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"1":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.007366482504604052}}},"4":{"0":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.009400705052878966},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.014732965009208104}},".":{"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.009208103130755065}}},"docs":{}}},"3":{"3":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}},"9":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.007366482504604052}},".":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}},"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"5":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"6":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"7":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"4":{"0":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}},"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}},"5":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}},"5":{"3":{"5":{"7":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}},"docs":{}},"docs":{}},"docs":{}},"6":{"3":{"7":{"4":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}},"docs":{}},"docs":{}},"docs":{}},"9":{"7":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}},".":{"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}},"6":{"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}},"9":{"1":{"0":{"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"7":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},".":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}},"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},".":{"5":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"8":{"7":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},":":{"0":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"9":{"4":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},".":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}},"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.1111111111111111}},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}}}}}},"w":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"t":{"docs":{},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"o":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"o":{"docs":{},"k":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"p":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.1111111111111111}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"n":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}},"l":{"docs":{},"n":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}},"i":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"e":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"s":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"\\":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"输":{"docs":{},"出":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"用":{"docs":{},"来":{"docs":{},"输":{"docs":{},"出":{"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"\"":{"docs":{},"\\":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"e":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":10.444444444444445},"chapter1/README.html#gitbook_6":{"ref":"chapter1/README.html#gitbook_6","tf":10.75},"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":10.00587544065805},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":10.404761904761905},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.13725490196078433},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.027624309392265192},"chapter2/the_basics.html#gitbook_12":{"ref":"chapter2/the_basics.html#gitbook_12","tf":10.666666666666666}},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"这":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"详":{"docs":{},"情":{"docs":{},"参":{"docs":{},"见":{"docs":{},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"和":{"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"插":{"docs":{},"值":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354}},"中":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"m":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.6777163904235726}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.02578268876611418}},".":{"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}}}}}}}},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"l":{"docs":{},"f":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"区":{"docs":{},"别":{"docs":{},"实":{"docs":{},"例":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"像":{"docs":{},"传":{"docs":{},"入":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},"给":{"docs":{},"类":{"docs":{},"传":{"docs":{},"入":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"的":{"docs":{},"参":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"6":{"docs":{},":":{"0":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"[":{"1":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.012925969447708578}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.01527614571092832}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"z":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}},"u":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}}},"r":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"1":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.007366482504604052}}},"2":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0282021151586369},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.7053406998158378}},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"”":{"docs":{},"的":{"docs":{},"意":{"docs":{},"思":{"docs":{},"是":{"docs":{},"“":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"任":{"docs":{},"意":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}},",":{"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"会":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"你":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"传":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},"u":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"添":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},"o":{"docs":{},"f":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"(":{"4":{"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}},"u":{"0":{"0":{"0":{"1":{"docs":{},"f":{"4":{"9":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"2":{"6":{"6":{"5":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},"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_5":{"ref":"index.html#gitbook_5","tf":0.1111111111111111},"chapter1/README.html#gitbook_6":{"ref":"chapter1/README.html#gitbook_6","tf":0.25},"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745},"chapter2/basic_operators.html#gitbook_10":{"ref":"chapter2/basic_operators.html#gitbook_10","tf":1},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013},"chapter2/the_basics.html#gitbook_12":{"ref":"chapter2/the_basics.html#gitbook_12","tf":0.3333333333333333}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0196078431372549},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.731123388581952}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}}}}}}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}}}}}},".":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"+":{"0":{"0":{"2":{"4":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"6":{"1":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}},"1":{"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"9":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}}},"2":{"6":{"6":{"5":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"d":{"8":{"3":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}},"docs":{}},"docs":{},"c":{"3":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}}}},"i":{"docs":{},"n":{"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{},"t":{"1":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"3":{"2":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}},"s":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"docs":{}},"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"docs":{},"-":{"1":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.014732965009208104}}},"docs":{}},"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.014732965009208104}},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.6666666666666665}}}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}}}},"w":{"docs":{},"w":{"docs":{},"d":{"docs":{},"c":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.1111111111111111}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"k":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}}}}}}},"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.02394106813996317}}}},"d":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},"o":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.007050528789659225}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"c":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}}}}}}}},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"s":{"docs":{},"c":{"docs":{},"i":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"n":{"docs":{},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0392156862745098}}}}}}}}},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0392156862745098},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"'":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.01289134438305709}}}}}}}},"r":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"s":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.024676850763807285}}}},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.022099447513812154}},"e":{"docs":{},"r":{"1":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.009208103130755065}}},"2":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.6666666666666665}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.010575793184488837}}}}},"u":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}},"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.07142857142857142},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.01289134438305709}},"的":{"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/swift.html#gitbook_8":{"ref":"chapter1/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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0196078431372549}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}}}}}}}}}}}}}}}},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.012925969447708578}},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}}}}}}}}},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},"c":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"、":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354}},"e":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}},"l":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"i":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"并":{"docs":{},"指":{"docs":{},"定":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"为":{"4":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}},"u":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.058823529411764705}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0282021151586369}},"来":{"docs":{},"声":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}},"e":{"docs":{},"t":{"docs":{},"g":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"s":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"h":{"docs":{},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"/":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0196078431372549},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.007366482504604052}}}},"p":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}},"r":{"docs":{},"e":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"i":{"docs":{},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"a":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"(":{"7":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"b":{"docs":{},"y":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.024676850763807285}},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}}},"o":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.047619047619047616},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"k":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"e":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"k":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}}}}}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}}}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.022326674500587545}},"d":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0196078431372549}},",":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},".":{"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}},"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.01645123384253819}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.007050528789659225}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"n":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"s":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.01841620626151013}}}}}}}}}},"o":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.09523809523809523},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.049019607843137254},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"<":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.047619047619047616},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"u":{"docs":{},"t":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"o":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},";":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},",":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"f":{"4":{"2":{"5":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"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":{},";":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"":{"docs":{},"":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"(":{"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.03525264394829612}},"f":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}}}}}},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},".":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"m":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}}}}}}},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.6685082872928176}}}}}}}}}}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"o":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}},"w":{"docs":{},"o":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.04935370152761457},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0392156862745098},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0196078431372549},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}},"x":{"2":{"4":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.047619047619047616},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353}},".":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"y":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"z":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}},"length":650},"corpusTokens":["0","0..3","0..time","0.0","1","10","100","103","11","111","12","128054","128054,是一个十六进制1f436","13","144","159","16","182","19","2","2.5","20","2014","21","240","25","3","3.0","3.1","3.14159","3.59","3.69","3.79","33","39","4","40","42","43","5","5.2","50","55357","56374","597","6","68","69105","7","7.5","7.simpledescript","70","70.0","75","8","87","8:09","9","9.9","94","a.adjust","a.simpledescript","ac","ace.toraw","acerawvalu","act","act1scenecount","add","addon","addone(numb","adescript","adjust","alik","amount","anoth","anotheremptystr","anotherproperti","ant","anycommonel","anycommonelements([1","api","appl","applese","applesummari","arc","area","array和dictionari","ascii","automat","b","b.adjust","b.simpledescript","bdescript","blackheart","blue","bonjour","bool","boolean","bottl","c","captain","capulet'","card","card(rank","card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit","carriag","case","catfish","celeri","cell","chang","charact","character1","character2","characterpluscharact","characterplusstr","characters)字符串字面量初始化空字符串字符串可变性字符串是值类型使用字符(characters)计算字符数量连接字符串和字符字符串插值比较字符串字符串相等前缀/后缀相等大写和小写字符串unicodeunicod","chees","class","club","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","cocoa里的nslog函数一样,println","codeunit","compile-tim","condit","condition(item","consid","constantstr","convertedrank","convertedrank.simpledescript","count","countel","countelements(unusualmenageri","counter","counter.incrementby(2","cucumb","current","currentloginattempt","c的兼容性的限制。swift","d","dai","default","deinit","diamond","dictionary(item","result","result(str","result(sunris","return","returnfifteen","rh","rhsitem","romeoandjuliet","room","samequot","sandwich","scalar","scene","scene.hasprefix(\"act","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","shouti","side","sidelength","simpl","simpleclass","simpledescript","simplestructur","simplestructure时候mutating关键字用来标记一个会修改结构体的方法。simpleclass","six","size","snail","some(100","some(t","somestr","sort([1","soup","spade","sparklingheart","spici","squar","square(sidelength","square.sidelength","standard","street","string","string(self.toraw","string(width","string1","string2","stringpluscharact","stringplusstr","string”的意思是“可以存储任意str","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","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","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","swift用字符串插值(str","switch","switch中匹配到的子句之后,程序会退出switch语句,并不会继续向下运行,所以不需要在每个子句结尾写break","syntax","t","t.generatortype.el","tast","tea","teamscor","ten","terminolog","test","test.area","test.simpledescript","three","threedescript","threeofspad","threeofspades.simpledescript","threeofspadesdescript","time","todai","toraw和fromraw","touch","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","true","tuesdai","tulip","tupl","two","type","u","u+0024","u+0061","u+1f436","u+1f496","u+2665","u+d83d","u+dc36","u.generatortype.el","u0001f496","u2665","uin8","uint16","uint32","uint8","uncom","undefinedundefin","unicod","unicodescalar","unicodescalarview","unnnn","unnnnnnnn","unusualmenageri","uppercasestr","us","utf-16","utf-8","utf-8utf-16unicod","utf16","utf16count","utf16view","utf8","utf8view","valu","var","variablestr","veget","vegetablecom","veri","verona","water","watercress","we'r","welcom","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","where,只在冒号后面写接口或者类名。<t","whisper","width","widthlabel","willset","willset和didset","wiseword","work","world","world"","wwdc","x","x.hassuffix(\"pepp","x24","xcode","xnn","y","yensign","z"],"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_4":["2014","languag","program","swift","undefinedundefin","wwdc"],"chapter1/01_swift.html#gitbook_5":["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_6":["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_7":["swift","undefinedundefin"],"chapter2/01_The_Basics.html#gitbook_9":["0","0.0","10","3.14159","array和dictionari","bonjour","c","chang","cocoa里的nslog函数一样,println","compile-tim","current","currentloginattempt","dogcow","error","friendlywelcom","friendlywelcome的值从"hello!"改为了"bonjour!"","hello","interpolation)的方式把常量名或者变量名当做占位符加入到长字符串中,swift会用当前常量或变量的值替换这些占位符。将常量或变量名放入反斜杠符加一对圆括号中"\\()"","int是整型;double和float是浮点型;bool是布尔型;string是字符串。swift","io","languagenam","let来声明常量,用var","maximumnumberofloginattempt","maximumnumberofloginattempts或者welcomemessage)和一个指定类型的值(比如数字10或者字符串hello","maximumnumberofloginattempts的新常量,并给它一个值10。然后,声明一个名字是currentloginattempt的变量并将它的值初始化为0","nil","now","objective-c","option","os","print","println","println(\"th","println(\"thi","println(friendlywelcom","println函数输出传入的str","println是一个用来输出的全局函数,输出的内容会在最后带换行。如果你用xcode,println将会输出内容到“console”面板上。(另一种函数叫print","string","string”的意思是“可以存储任意str","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","swift","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","swift用字符串插值(str","tupl","undefinedundefin","unicod","valu","var","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","x","y","z"],"chapter2/03_Strings_and_Characters.html#gitbook_10":["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"。swift","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_13":["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/chapter2.html#gitbook_31":["swift","undefinedundefin"]},"length":8},"tokenStore":{"root":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.01410105757931845},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}},".":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.029411764705882353}}},"docs":{},".":{"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}},"1":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}},"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.011049723756906077}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"1":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.011049723756906077}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"2":{"8":{"0":{"5":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},",":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"十":{"docs":{},"六":{"docs":{},"进":{"docs":{},"制":{"1":{"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}}},"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"4":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"docs":{}},"5":{"9":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"docs":{}},"6":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"8":{"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"docs":{}},"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.009400705052878966},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.01841620626151013}}},"2":{"0":{"1":{"4":{"docs":{"index.html#gitbook_4":{"ref":"index.html#gitbook_4","tf":0.1111111111111111}}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.007366482504604052}}},"4":{"0":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"docs":{}},"5":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.009400705052878966},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.014732965009208104}},".":{"5":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.009208103130755065}}},"docs":{}}},"3":{"3":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.011049723756906077}}},"9":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.007366482504604052}},".":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}},"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"5":{"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}},"6":{"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}},"7":{"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"4":{"0":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}},"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}},"5":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}},"5":{"3":{"5":{"7":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}},"docs":{}},"docs":{}},"docs":{}},"6":{"3":{"7":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}},"docs":{}},"docs":{}},"docs":{}},"9":{"7":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.005875440658049354},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}},".":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}}},"6":{"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.011049723756906077}}},"9":{"1":{"0":{"5":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"7":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},".":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}}},"5":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}},".":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"8":{"7":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}},":":{"0":{"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"9":{"4":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},".":{"9":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}}},"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"index.html#gitbook_4":{"ref":"index.html#gitbook_4","tf":0.1111111111111111}},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.029411764705882353}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}}}}}}},"w":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}}}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}},"o":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"o":{"docs":{},"k":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"p":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"index.html#gitbook_4":{"ref":"index.html#gitbook_4","tf":0.1111111111111111}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.029411764705882353},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384},"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.07142857142857142}},"l":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}},"\\":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}}}}}},"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}},"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_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808}}}}}},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","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_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"输":{"docs":{},"出":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"用":{"docs":{},"来":{"docs":{},"输":{"docs":{},"出":{"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808}}}}}}}},"e":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.047619047619047616}}}}}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"index.html#gitbook_4":{"ref":"index.html#gitbook_4","tf":10.444444444444445},"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":10.404761904761905},"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":10.00587544065805},"chapter1/chapter1.html#gitbook_7":{"ref":"chapter1/chapter1.html#gitbook_7","tf":10.75},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.13725490196078433},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.027624309392265192},"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808},"chapter2/chapter2.html#gitbook_31":{"ref":"chapter2/chapter2.html#gitbook_31","tf":10.666666666666666}},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"这":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"详":{"docs":{},"情":{"docs":{},"参":{"docs":{},"见":{"docs":{},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"和":{"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"插":{"docs":{},"值":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}},"统":{"docs":{},"一":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"语":{"docs":{},"法":{"docs":{},"足":{"docs":{},"够":{"docs":{},"灵":{"docs":{},"活":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"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_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.005875440658049354}},"中":{"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}},"m":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}},"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_13":{"ref":"chapter2/06_Functions.html#gitbook_13","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_13":{"ref":"chapter2/06_Functions.html#gitbook_13","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_13":{"ref":"chapter2/06_Functions.html#gitbook_13","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_13":{"ref":"chapter2/06_Functions.html#gitbook_13","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_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}}},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":1.6777163904235726}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.02578268876611418}},".":{"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}}}}}}}}}}},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"l":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}}}}}},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"区":{"docs":{},"别":{"docs":{},"实":{"docs":{},"例":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"像":{"docs":{},"传":{"docs":{},"入":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},"给":{"docs":{},"类":{"docs":{},"传":{"docs":{},"入":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"的":{"docs":{},"参":{"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.012925969447708578}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"z":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}}}}},"u":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}}}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.007366482504604052}}},"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0282021151586369},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.029411764705882353},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":1.7053406998158378},"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.09523809523809523}},"(":{"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}},",":{"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}},"类":{"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"添":{"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}},"o":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},"(":{"4":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}},"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}},"u":{"0":{"0":{"0":{"1":{"docs":{},"f":{"4":{"9":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"2":{"6":{"6":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}},"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_4":{"ref":"index.html#gitbook_4","tf":0.1111111111111111},"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter1/chapter1.html#gitbook_7":{"ref":"chapter1/chapter1.html#gitbook_7","tf":0.25},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013},"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808},"chapter2/chapter2.html#gitbook_31":{"ref":"chapter2/chapter2.html#gitbook_31","tf":0.3333333333333333}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.0196078431372549},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":1.731123388581952}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.011049723756906077}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}}}}}}}}}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}}}}}}}}},".":{"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"+":{"0":{"0":{"2":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}},"6":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}},"1":{"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"docs":{}},"9":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}}},"2":{"6":{"6":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"d":{"8":{"3":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}},"docs":{}},"docs":{},"c":{"3":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}},"docs":{}}}},"i":{"docs":{},"n":{"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{},"t":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"docs":{}},"3":{"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}},"docs":{},"-":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.014732965009208104}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.014732965009208104}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":1.6666666666666665}}}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}}}},"w":{"docs":{},"w":{"docs":{},"d":{"docs":{},"c":{"docs":{"index.html#gitbook_4":{"ref":"index.html#gitbook_4","tf":0.1111111111111111}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}},"k":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.029411764705882353}},"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808}}},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808}}}}}}}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}}}}}}}}}}},"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.02394106813996317}}}},"d":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}},"o":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.007050528789659225}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.047619047619047616}}}}},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}},"s":{"docs":{},"c":{"docs":{},"i":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.047619047619047616}}}}}}},"c":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.0392156862745098},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.07142857142857142},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.01289134438305709}},"的":{"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_5":{"ref":"chapter1/01_swift.html#gitbook_5","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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}},"的":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"'":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.01289134438305709}}}}}}}},"r":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}},"s":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.024676850763807285}}}},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.022099447513812154}},"e":{"docs":{},"r":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.009208103130755065}}},"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":1.6666666666666665}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.010575793184488837}}}}},"u":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}}},"u":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.0196078431372549}},"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}}}},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}},"l":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}},"i":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},"并":{"docs":{},"指":{"docs":{},"定":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"为":{"4":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.058823529411764705}},"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0282021151586369},"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.047619047619047616}},"来":{"docs":{},"声":{"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":10.023809523809524}}}}}},"作":{"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_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.005875440658049354},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.0196078431372549},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.007366482504604052},"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.11904761904761904}}}},"p":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"/":{"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}},"i":{"docs":{},"o":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.047619047619047616},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}},"a":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},"(":{"7":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.024676850763807285}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}}}}}},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}},"o":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.011049723756906077}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.09523809523809523},"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.049019607843137254},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}}}}},"s":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.047619047619047616},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}}}}}},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808}}}}},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.005875440658049354}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.03525264394829612},"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.047619047619047616}},"f":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}},".":{"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},"m":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}}}}}}}},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":1.6685082872928176}}}}}}}}}}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}},"w":{"docs":{},"o":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}},"x":{"2":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}},"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.047619047619047616},"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.029411764705882353}},".":{"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"n":{"docs":{},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.0392156862745098}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808}}}}}}},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.011049723756906077}},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}}}}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.012925969447708578}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}}}}}}}}}}}}},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}},"c":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}}}}}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"docs":{}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"、":{"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.005875440658049354}},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.011049723756906077}},"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}},"s":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414},"chapter2/06_Functions.html#gitbook_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.047619047619047616}},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}}},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"k":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"e":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.005875440658049354}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}},"k":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}}}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}},"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}},"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}},"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_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.011049723756906077}}}}}}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.011049723756906077}}}}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.005875440658049354},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.022326674500587545}},"d":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}}}}}}}},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.0196078431372549}},",":{"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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","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_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},".":{"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.01645123384253819}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.007050528789659225}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}}}}}}},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}}}}}}}}}}},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}},"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_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.01841620626151013}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123}}}}},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}},";":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},",":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"f":{"4":{"2":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}},"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":{},";":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}},"":{"docs":{},"":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}},"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_13":{"ref":"chapter2/06_Functions.html#gitbook_13","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.04935370152761457},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.0392156862745098},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.011049723756906077}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.0055248618784530384}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.0196078431372549},"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.004700352526439483}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0011750881316098707}}},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.003683241252302026}}}}}}}},"y":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_6":{"ref":"chapter1/02_a_swift_tour.html#gitbook_6","tf":0.0035252643948296123},"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_10":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_10","tf":0.001841620626151013}}}}}}}}},"z":{"docs":{"chapter2/01_The_Basics.html#gitbook_9":{"ref":"chapter2/01_The_Basics.html#gitbook_9","tf":0.00980392156862745}}}},"length":676},"corpusTokens":["0","0..3","0..time","0.0","1","10","100","103","11","111","12","128054","128054,是一个十六进制1f436","13","144","159","16","182","19","2","2.5","20","2014","21","240","25","3","3.0","3.1","3.14159","3.59","3.69","3.79","33","39","4","40","42","43","5","5.2","50","55357","56374","597","6","68","69105","7","7.5","7.simpledescript","70","70.0","75","8","87","8:09","9","9.9","94","a.adjust","a.simpledescript","ac","ace.toraw","acerawvalu","act","act1scenecount","add","addon","addone(numb","adescript","adjust","again","alik","amount","anna","anoth","anotheremptystr","anotherproperti","ant","anycommonel","anycommonelements([1","api","appl","applese","applesummari","arc","area","argument","array和dictionari","ascii","automat","b","b.adjust","b.simpledescript","bdescript","blackheart","blue","bonjour","bool","boolean","bottl","brian","c","captain","capulet'","card","card(rank","card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit","carriag","case","catfish","celeri","cell","chang","charact","character1","character2","characterpluscharact","characterplusstr","characters)字符串字面量初始化空字符串字符串可变性字符串是值类型使用字符(characters)计算字符数量连接字符串和字符字符串插值比较字符串字符串相等前缀/后缀相等大写和小写字符串unicodeunicod","chees","class","club","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","cocoa里的nslog函数一样,println","codeunit","compile-tim","condit","condition(item","consid","constantstr","convertedrank","convertedrank.simpledescript","count","countel","countelements(unusualmenageri","counter","counter.incrementby(2","cucumb","current","currentloginattempt","c的兼容性的限制。swift","d","dai","default","deinit","diamond","dictionary(item","result","result(str","result(sunris","return","returnfifteen","rh","rhsitem","romeoandjuliet","room","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","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","shouti","side","sidelength","simpl","simpleclass","simpledescript","simplestructur","simplestructure时候mutating关键字用来标记一个会修改结构体的方法。simpleclass","six","size","snail","some(100","some(t","somestr","sort([1","soup","spade","sparklingheart","spici","squar","square(sidelength","square.sidelength","standard","street","string","string(self.toraw","string(width","string1","string2","stringpluscharact","stringplusstr","string”的意思是“可以存储任意str","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","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","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","swift用字符串插值(str","swift统一的函数语法足够灵活,可以用来表示任何函数,包括从最简单的没有参数名字的c风格函数,到复杂的带局部和外部参数名的objective-c","switch","switch中匹配到的子句之后,程序会退出switch语句,并不会继续向下运行,所以不需要在每个子句结尾写break","syntax","t","t.generatortype.el","tast","tea","teamscor","ten","terminolog","test","test.area","test.simpledescript","three","threedescript","threeofspad","threeofspades.simpledescript","threeofspadesdescript","time","todai","toraw和fromraw","touch","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","true","tuesdai","tulip","tupl","two","type","u","u+0024","u+0061","u+1f436","u+1f496","u+2665","u+d83d","u+dc36","u.generatortype.el","u0001f496","u2665","uin8","uint16","uint32","uint8","uncom","undefinedundefin","unicod","unicodescalar","unicodescalarview","unnnn","unnnnnnnn","unusualmenageri","uppercasestr","us","utf-16","utf-8","utf-8utf-16unicod","utf16","utf16count","utf16view","utf8","utf8view","valu","var","variablestr","veget","vegetablecom","veri","verona","water","watercress","we'r","welcom","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","where,只在冒号后面写接口或者类名。<t","whisper","width","widthlabel","willset","willset和didset","wiseword","work","world","world"","wwdc","x","x.hassuffix(\"pepp","x24","xcode","xnn","y","yensign","z"],"pipeline":["trimmer","stopWordFilter","stemmer"]}
\ No newline at end of file
diff --git a/source/SUMMARY.md b/source/SUMMARY.md
index bb3ace34..4168533e 100644
--- a/source/SUMMARY.md
+++ b/source/SUMMARY.md
@@ -1,8 +1,40 @@
# Summary
-* [欢迎使用 Swift](chapter1/README.md)
- * [关于 Swift](chapter1/swift.md)
- * [Swift 初见](chapter1/a_swift_tour.md)
-* [Swift 教程](chapter2/the_basics.md)
- * [基础部分](chapter2/article_1.md)
+* [欢迎使用 Swift](chapter1/chapter1.md)
+ * [关于 Swift](chapter1/01_swift.md)
+ * [Swift 初见](chapter1/02_a_swift_tour.md)
+* [Swift 教程](chapter2/chapter2.md)
+ * [基础部分](chapter2/01_The_Basics.md)
+ * [基本操作符](chapter2/02_Basic_Operators.md)
+ * [字符串和字符](chapter2/03_Strings_and_Characters.md)
+ * [集合类型](chapter2/04_Collection_Types.md)
+ * [控制流](chapter2/05_Control_Flow.md)
+ * [函数](chapter2/06_Functions.md)
+ * [闭包](chapter2/07_Closures.md)
+ * [枚举](chapter2/08_Enumerations.md)
+ * [类和结构体](chapter2/09_Classes_and_Structures.md)
+ * [属性](chapter2/10_Properties.md)
+ * [方法](chapter2/11_Methods.md)
+ * [下标](chapter2/12_Subscripts.md)
+ * [继承](chapter2/13_Inheritance.md)
+ * [构造函数](chapter2/14_Initialization.md)
+ * [析构函数](chapter2/15_Deinitialization.md)
+ * [自动引用计数](chapter2/16_Automatic_Reference_Counting.md)
+ * [可选链](chapter2/17_Optional_Chaining.md)
+ * [类型检查](chapter2/18_Type_Casting.md)
+ * [嵌套类型](chapter2/19_Nested_Types.md)
+ * [扩展](chapter2/20_Extensions.md)
+ * [接口](chapter2/21_Protocols.md)
+ * [泛型](chapter2/22_Generics.md)
+ * [高级操作符](chapter2/23_Advanced_Operators.md)
+* [语言参考](chapter3/chapter3.md)
+ * [关于语言参考](chapter3/01_About_the_Language_Reference.md)
+ * [词法结构](chapter3/02_Lexical_Structure.md)
+ * [类型](chapter3/03_Types.md)
+ * [表达式](chapter3/04_Expressions.md)
+ * [声明](chapter3/05_Declarations.md)
+ * [属性](chapter3/06_Attributes.md)
+ * [模式](chapter3/07_Patterns.md)
+ * [泛型参数](chapter3/08_Generic_Parameters_and_Arguments.md)
+ * [语法总结](chapter3/09_Summary_of_the_Grammar.md)
diff --git a/source/chapter1/swift.md b/source/chapter1/01_swift.md
similarity index 100%
rename from source/chapter1/swift.md
rename to source/chapter1/01_swift.md
diff --git a/source/chapter1/a_swift_tour.md b/source/chapter1/02_a_swift_tour.md
similarity index 100%
rename from source/chapter1/a_swift_tour.md
rename to source/chapter1/02_a_swift_tour.md
diff --git a/source/chapter1/README.md b/source/chapter1/chapter1.md
similarity index 100%
rename from source/chapter1/README.md
rename to source/chapter1/chapter1.md
diff --git a/source/chapter2/The_Basics.md b/source/chapter2/01_The_Basics.md
similarity index 90%
rename from source/chapter2/The_Basics.md
rename to source/chapter2/01_The_Basics.md
index 5f28f6b1..e9172f16 100644
--- a/source/chapter2/The_Basics.md
+++ b/source/chapter2/01_The_Basics.md
@@ -59,9 +59,9 @@ Swift 是一个类型安全的语言,可选就是一个很好的例子。Swift
你可以用任何你喜欢的字符作为常量和变量名,包括Unicode字符:
- let π = 3.14159
- let 你好 = "你好世界"
- let 🐶🐮 = "dogcow"
+ let π = 3.14159
+ let 你好 = "你好世界"
+ let 🐶🐮 = "dogcow"
常量与变量名不能包含数学符号,箭头,保留的(或者非法的)Unicode码位,连线与制表符。尽管常量与变量名中可以包含数字,但是它们不能以数字打头。
@@ -71,35 +71,35 @@ Swift 是一个类型安全的语言,可选就是一个很好的例子。Swift
你可以更改现有的变量值为其他同类型的值,在下面的例子中,`friendlyWelcome`的值从`"Hello!"`改为了`"Bonjour!"`:
- var friendlyWelcome = "Hello!"
- friendlyWelcome = "Bonjour!"
- // friendlyWelcome is now "Bonjour!"
+ var friendlyWelcome = "Hello!"
+ friendlyWelcome = "Bonjour!"
+ // friendlyWelcome is now "Bonjour!"
和变量不一样,常量的值一旦被确定以后就不能更改了。尝试这样做会在编译时报错:
- let languageName = "Swift"
- languageName = "Swift++"
- // this is a compile-time error - languageName cannot be changed
-
+ let languageName = "Swift"
+ languageName = "Swift++"
+ // this is a compile-time error - languageName cannot be changed
+
### 输出常量和变量
你可以用`println`函数来输出当前常量或变量的值:
- println(friendlyWelcome)
- // prints "Bonjour!"
-
+ println(friendlyWelcome)
+ // prints "Bonjour!"
+
`println`是一个用来输出的全局函数,输出的内容会在最后带换行。如果你用Xcode,`println`将会输出内容到“console”面板上。(另一种函数叫`print`,唯一区别是在输出内容最后不会加入换行。)
`println`函数输出传入的`String`值:
- println("This is a string")
- // prints "This is a string"
+ println("This is a string")
+ // prints "This is a string"
像Cocoa里的`NSLog`函数一样,`println`函数可以输出更复杂的信息。这些信息可以包含当前常量和变量的值。
Swift用字符串插值(string interpolation)的方式把常量名或者变量名当做占位符加入到长字符串中,Swift会用当前常量或变量的值替换这些占位符。将常量或变量名放入反斜杠符加一对圆括号中`"\()"`:
- println("The current value of friendlyWelcome is \(friendlyWelcome)")
- // prints "The current value of friendlyWelcome is Bonjour!
-
+ println("The current value of friendlyWelcome is \(friendlyWelcome)")
+ // prints "The current value of friendlyWelcome is Bonjour!
+
> 注意:字符串插值所有可用的选项在 字符串插值 这章中讲述。
\ No newline at end of file
diff --git a/source/chapter2/02_Basic_Operators.md b/source/chapter2/02_Basic_Operators.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/Strings_and_Characters.md b/source/chapter2/03_Strings_and_Characters.md
similarity index 95%
rename from source/chapter2/Strings_and_Characters.md
rename to source/chapter2/03_Strings_and_Characters.md
index 14423309..8fe256db 100644
--- a/source/chapter2/Strings_and_Characters.md
+++ b/source/chapter2/03_Strings_and_Characters.md
@@ -30,10 +30,10 @@ let someString = "Some string literal value"
字符串字面量可以包含以下特殊字符:
-* 转移特殊字符 `\0` (空字符)、`\\`(反斜线)、`\t` (水平制表符)、`\n` (换行符)、`\r` (回车符)、`\"` (双引号)、`\'` (单引号)。
-* 单字节 Unicode 标量,写成 `\xnn`,其中 nn 为两位十六进制数。
-* 双字节 Unicode 标量,写成 `\unnnn`,其中 nnnn 为四位十六进制数。
-* 四字节 Unicode 标量,写成 `\Unnnnnnnn`,其中 nnnnnnnn 为八位十六进制数。
+* 转移特殊字符 `\0` (空字符)、`\\`(反斜线)、`\t` (水平制表符)、`\n` (换行符)、`\r` (回车符)、`\"` (双引号)、`\'` (单引号)。
+* 单字节 Unicode 标量,写成 `\xnn`,其中 nn 为两位十六进制数。
+* 双字节 Unicode 标量,写成 `\unnnn`,其中 nnnn 为四位十六进制数。
+* 四字节 Unicode 标量,写成 `\Unnnnnnnn`,其中 nnnnnnnn 为八位十六进制数。
下面的代码为各种特殊字符的使用示例。
@@ -268,9 +268,9 @@ Swift 提供了几种不同的方式来访问字符串的 Unicode 表示。
另外,能够以其他三种 Unicode 兼容的方式访问字符串的值:
-* UTF-8 代码单元集合 (利用字符串的 `utf8` 属性进行访问)
-* UTF-16 代码单元集合 (利用字符串的 `utf16` 属性进行访问)
-* 21位的 Unicode 标量值集合 (利用字符串的 `unicodeScalars` 属性进行访问)
+* UTF-8 代码单元集合 (利用字符串的 `utf8` 属性进行访问)
+* UTF-16 代码单元集合 (利用字符串的 `utf16` 属性进行访问)
+* 21位的 Unicode 标量值集合 (利用字符串的 `unicodeScalars` 属性进行访问)
下面由 `D` `o` `g` `!` 和 `🐶` (狗脸表情,Unicode 标量为 `U+1F436`)组成的字符串中的每一个字符代表着一种不同的表示:
diff --git a/source/chapter2/04_Collection_Types.md b/source/chapter2/04_Collection_Types.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/05_Control_Flow.md b/source/chapter2/05_Control_Flow.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/Functions.md b/source/chapter2/06_Functions.md
similarity index 85%
rename from source/chapter2/Functions.md
rename to source/chapter2/06_Functions.md
index 2f4ec98e..f78aceac 100644
--- a/source/chapter2/Functions.md
+++ b/source/chapter2/06_Functions.md
@@ -14,20 +14,20 @@ Swift统一的函数语法足够灵活,可以用来表示任何函数,包括
在下面例子中的函数叫做`"greetingForPerson"`,之所以叫这个名字是因为这个函数用一个人的名字当做输入,并返回给这个人的问候语。为了完成这个任务,你定义一个输入参数-一个叫做`personName`的`String`值,和一个包含给这个人问候语的`String`类型的返回值:
- func sayHello(personName: String) -> String {
- let greeting = "Hello, " + personName + "!"
- return greeting
- }
+ func sayHello(personName: String) -> String {
+ let greeting = "Hello, " + personName + "!"
+ return greeting
+ }
所有的这些信息汇总起来成为函数的定义,并以`func`作为前缀。指定函数返回类型时,用返回箭头`->`(一个连字符后跟一个右尖括号)后跟返回类型的名称的方式来表示。
该定义描述了函数做什么,它期望接收什么和执行结束时它返回的结果是什么。这样的定义使的函数可以在别的地方以一种清晰的方式被调用:
- println(sayHello("Anna"))
- // prints "Hello, Anna!"
- println(sayHello("Brian"))
- // prints "Hello, Brian!
-
+ println(sayHello("Anna"))
+ // prints "Hello, Anna!"
+ println(sayHello("Brian"))
+ // prints "Hello, Brian!
+
调用`sayHello`函数时,在圆括号中传给它一个`String`类型的实参。因为这个函数返回一个`String`类型的值,`sayHello`可以被包含在`println`的调用中,用来输出这个函数的返回值,正如上面所示。
在`sayHello`的函数体中,先定义了一个新的名为`greeting`的`String`常量,同时赋值了给`personName`的一个简单问候消息。然后用`return`关键字把这个问候返回出去。一旦`return greeting`被调用,该函数结束它的执行并返回`greeting`的当前值。
@@ -36,10 +36,10 @@ Swift统一的函数语法足够灵活,可以用来表示任何函数,包括
为了简化这个函数的定义,可以将问候消息的创建和返回写成一句:
- func sayHelloAgain(personName: String) -> String {
- return "Hello again, " + personName + "!"
- }
- println(sayHelloAgain("Anna"))
- // prints "Hello again, Anna!
+ func sayHelloAgain(personName: String) -> String {
+ return "Hello again, " + personName + "!"
+ }
+ println(sayHelloAgain("Anna"))
+ // prints "Hello again, Anna!
## 函数参数与返回值
\ No newline at end of file
diff --git a/source/chapter2/07_Closures.md b/source/chapter2/07_Closures.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/08_Enumerations.md b/source/chapter2/08_Enumerations.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/09_Classes_and_Structures.md b/source/chapter2/09_Classes_and_Structures.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/10_Properties.md b/source/chapter2/10_Properties.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/11_Methods.md b/source/chapter2/11_Methods.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/12_Subscripts.md b/source/chapter2/12_Subscripts.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/13_Inheritance.md b/source/chapter2/13_Inheritance.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/14_Initialization.md b/source/chapter2/14_Initialization.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/15_Deinitialization.md b/source/chapter2/15_Deinitialization.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/16_Automatic_Reference_Counting.md b/source/chapter2/16_Automatic_Reference_Counting.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/17_Optional_Chaining.md b/source/chapter2/17_Optional_Chaining.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/18_Type_Casting.md b/source/chapter2/18_Type_Casting.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/19_Nested_Types.md b/source/chapter2/19_Nested_Types.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/20_Extensions.md b/source/chapter2/20_Extensions.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/21_Protocols.md b/source/chapter2/21_Protocols.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/22_Generics.md b/source/chapter2/22_Generics.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/23_Advanced_Operators.md b/source/chapter2/23_Advanced_Operators.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter2/the basics.md b/source/chapter2/chapter2.md
similarity index 100%
rename from source/chapter2/the basics.md
rename to source/chapter2/chapter2.md
diff --git a/source/chapter3/01_About_the_Language_Reference.md b/source/chapter3/01_About_the_Language_Reference.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter3/02_Lexical_Structure.md b/source/chapter3/02_Lexical_Structure.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter3/03_Types.md b/source/chapter3/03_Types.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter3/04_Expressions.md b/source/chapter3/04_Expressions.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter3/05_Declarations.md b/source/chapter3/05_Declarations.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter3/06_Attributes.md b/source/chapter3/06_Attributes.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter3/07_Patterns.md b/source/chapter3/07_Patterns.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter3/08_Generic_Parameters_and_Arguments.md b/source/chapter3/08_Generic_Parameters_and_Arguments.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter3/09_Summary_of_the_Grammar.md b/source/chapter3/09_Summary_of_the_Grammar.md
new file mode 100644
index 00000000..e69de29b
diff --git a/source/chapter3/chapter3.md b/source/chapter3/chapter3.md
new file mode 100644
index 00000000..e69de29b