Update Ch15

This commit is contained in:
Lenny PENG 2023-06-03 07:42:19 +08:00
parent 579d5539f8
commit e4e17fe0bf

View File

@ -224,7 +224,7 @@ fn main() {
**<small>表 B-4泛型</small>**
| 符号 | 说明 |
| --- | --- |
| :-- | :-- |
| `path<...>` | 指明类型中的泛型参数(比如,`Vec<u8>` |
| `path::<...>`, `method::<...>` | 指明表达式中泛型、函数或方法的参数通常这被称作涡轮鱼语法turbofish比如`"42".parse::<i32>()`,关于 Rust 的 turbofish 语法,请参考:[What is Rust's turbofish](https://techblog.tonsser.com/posts/what-is-rusts-turbofish)[RUST 中的 turbofish 语法(一)](https://www.jianshu.com/p/9107685ece03) ... |
| `fn ident<...> ...` | 定义出泛型函数 |