diff --git a/src/index-list.md b/src/index-list.md index 7bec79db..954b3b99 100644 --- a/src/index-list.md +++ b/src/index-list.md @@ -10,11 +10,11 @@ -| NN | NN | NN | NN | NN | NN | NN | NN | NN | NN | NN | -| :---------: | :-----: | :-----: | :-----: | :-----: | :-----: | :-----: | :-----: | :-----: | :-----: | :-----: | -| [Sym](#Sym) | [A](#A) | [B](#B) | [C](#C) | [D](#D) | [E](#E) | [F](#F) | [G](#G) | [H](#H) | [I](#I) | [J](#J) | -| [K](#K) | [L](#L) | [M](#M) | [N](#N) | [O](#O) | [P](#P) | [Q](#Q) | [R](#R) | [S](#S) | [T](#T) | [U](#U) | -| [V](#V) | [W](#W) | [X](#X) | [Y](#Y) | [Z](#Z) | +| NN | NN | NN | NN | NN | NN | NN | NN | NN | +| :---------: | :-----: | :-----: | :-----: | :-----: | :-----: | :-----: | :-----: | :-----: | +| [Sym](#Sym) | [A](#A) | [B](#B) | [C](#C) | [D](#D) | [E](#E) | [F](#F) | [G](#G) | [H](#H) | +| [I](#I) | [J](#J) | [K](#K) | [L](#L) | [M](#M) | [N](#N) | [O](#O) | [P](#P) | [Q](#Q) | +| [R](#R) | [S](#S) | [T](#T) | [U](#U) | [V](#V) | [W](#W) | [X](#X) | [Y](#Y) | [Z](#Z) | ## Sym @@ -22,15 +22,15 @@ | ----------------------- | ------------ | -------------------------- | | [?] | 错误传播 | 用于简化错误传播 | | [()] | 单元类型 | 单元类型,无返回值 | -| `!` : [1] 函数 [2] 类型 | 永不返回 | 永不返回 | +| `!` : [1 函数] [2 类型] | 永不返回 | 永不返回 | | [@] | 变量绑定 | 为一个字段绑定另外一个变量 | | ['a: 'b] | 生命周期约束 | | | A | | AIntroduction | [?]: https://course.rs/basic/result-error/result.html#传播界的大明星- [()]: https://course.rs/basic/base-type/function.html#无返回值 -[1]: https://course.rs/basic/base-type/function.html#永不返回的函数 -[2]: https://course.rs/advance/into-types/custom-type.html#永不返回类型 +[1 函数]: https://course.rs/basic/base-type/function.html#永不返回的函数 +[2 类型]: https://course.rs/advance/into-types/custom-type.html#永不返回类型 [@]: https://course.rs/basic/match-pattern/all-patterns.html#绑定 ['a: 'b]: https://course.rs/advance/lifetime/advance.html#生命周期约束-hrtb @@ -49,11 +49,13 @@ | 名称 | 关键字 | 简介 | | ----------- | --------- | -------------------------------------- | | [变量遮蔽] | shadowing | 允许声明相同的变量名,后者会遮蔽掉前者 | +| [表达式] | | 进行求值,结尾无 `;`,有返回值 | | [bool 布尔] | 布尔类型 | `true` `false`,占用 1 字节 | | B | KWB | BIntroduction | [变量遮蔽]: https://course.rs/basic/variable.html#变量遮蔽shadowing [bool 布尔]: https://course.rs/basic/base-type/char-bool.html#布尔bool +[表达式]: https://course.rs/basic/base-type/statement-expression.html#表达式 [back](#head) @@ -61,12 +63,12 @@ | 名称 | 关键字 | 简介 | | ------------ | -------- | --------------------------------- | -| [const 常量] | constant | const MAX_POINTS: u32 = 100_000; | | [char 字符] | 字符类型 | 使用 `''` 表示,所有的 Unicode 值 | +| [const 常量] | constant | const MAX_POINTS: u32 = 100_000; | | C | KWC | CIntroduction | -[const 常量]: https://course.rs/basic/variable.html#变量和常量之间的差异 [char 字符]: https://course.rs/basic/base-type/char-bool.html#字符类型char +[const 常量]: https://course.rs/basic/variable.html#变量和常量之间的差异 [back](#head) @@ -107,9 +109,12 @@ ## H -| 名称 | 关键字 | 简介 | -| ---- | ------ | ------------- | -| H | KWH | HIntroduction | +| 名称 | 关键字 | 简介 | +| ------ | ------ | ------------------------------------------------------------------------------------------------- | +| [函数] | `fn` | 函数名和变量名使用 `蛇形命名法(snake case)`
函数的位置可以随便放
每个函数参数都需要标注类型 | +| H | KWH | HIntroduction | + +[函数]: https://course.rs/basic/base-type/function.html [back](#head) @@ -251,19 +256,22 @@ ## Y -| 名称 | 关键字 | 简介 | -| ---- | ------ | ------------- | -| Y | KWY | YIntroduction | +| 名称 | 关键字 | 简介 | +| ------ | ------ | ---------------------------------------------------- | +| [语句] | | 完成一个操作,结尾有 `;` ,无返回值,如 `let x = 9;` | +| Y | KWY | YIntroduction | + +[语句]: https://course.rs/basic/base-type/statement-expression.html#语句 [back](#head) ## Z -| 名称 | 关键字 | 简介 | -| ------------ | -------- | ------------------------------------------------------------------------------------------------------ | -| [整数] | 数值类型 | 有符号整数,`i8`,`i16`,`i32`,`i64`,`i128`,`isize`
无符号整数,`u8`,`u16`,`u32`,`u64`,`u128`,`usize` | -| [整形字面量] | 进制书写 | 十进制 `98_222`
十六进制 `0xff`
八进制 `0o77`
二进制 `0b1111_0000`
字节(仅限于`u8`) `b'A'` | -| Z | KWZ | ZIntroduction | +| 名称 | 关键字 | 简介 | +| ------------ | -------- | ---------------------------------------------------------------------------------------------------------------- | +| [整数] | 数值类型 | 有符号整数,`i8`,`i16`,`i32`,`i64`,`i128`,`isize`
无符号整数,`u8`,`u16`,`u32`,`u64`,`u128`,`usize` | +| [整形字面量] | 进制书写 | 十进制 `98_222`
十六进制 `0xff`
八进制 `0o77`
二进制 `0b1111_0000`
字节(仅限于`u8`) `b'A'` | +| Z | KWZ | ZIntroduction | [整数]: https://course.rs/basic/base-type/numbers.html#整数类型 [整形字面量]: https://course.rs/basic/base-type/numbers.html#整数类型