Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
https://kaisery.github.io/trpl-zh-cn/ch10-00-generics.html
在示例 10-3 的程序中将寻找最大值的代码提取到了一个叫做 largest 的函数中。
接着我们调用了示例 10-2 中寻找两个列表中最大值的函数
。之后也可以将该函数用于任何可能的 i32 值的列表。https://doc.rust-lang.org/book/ch10-00-generics.html
In Listing 10-3, we extract the code that finds the largest number into a function named largest.
Then we call the function to find the largest number in the two lists from Listing 10-2
. We could also use the function on any other list of i32 values we might have in the future.