Update ch13-01-closures.md

This commit is contained in:
TeCHiScy 2023-01-22 16:44:45 +08:00 committed by GitHub
parent e0bf7dbac5
commit 992473f5de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,7 +155,7 @@ impl<T> Option<T> {
}
}
回忆 `T`一个范型表示 `Option``Some` 成员中的值的类型。类型 `T` 也是 `unwrap_or_else` 函数的返回值类型:举例来说,在 `Option<String>` 上调用 `unwrap_or_else` 会得到一个 `String`
回忆 `T` 是表示 `Option``Some` 成员中的值的类型的范型。类型 `T` 也是 `unwrap_or_else` 函数的返回值类型:举例来说,在 `Option<String>` 上调用 `unwrap_or_else` 会得到一个 `String`
接着注意到 `unwrap_or_else` 函数有额外的范型参数 `F``F``f` 参数(即调用 `unwrap_or_else` 时提供的闭包)的类型。