Skip to content

Commit

Permalink
Update 15-01-iterator.md (#210)
Browse files Browse the repository at this point in the history
修改了一个不太通顺的句子
  • Loading branch information
wy193777 authored and Naupio Z.Y. Huang committed Apr 18, 2016
1 parent f21a0e1 commit 43d487c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 15-iterator/15-01-iterator.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ Rust的迭代器有一系列的查找函数,比如:
* `position()`: 类似`find`函数,不过这次输出的是`Option<usize>`,第几个元素。
* `all()`: 传入一个函数,对所有元素调用这个函数,一旦有一个返回`false`,则整个表达式返回`false`,否则返回`true`
* `any()`: 类似`all()`,不过这次是任何一个返回`true`,则整个表达式返回`true`,否则`false`
* `max()``min()`: 查找整个迭代器里所有元素,返回最大或最小值的元素。注意:因为第七章讲过的`PartialOrder`的原因,浮点数无法参被`max`正确的理解
* `max()``min()`: 查找整个迭代器里所有元素,返回最大或最小值的元素。注意:因为第七章讲过的`PartialOrder`的原因,浮点数无法被`max``min`正确的理解


以上,为常用的一些迭代器和适配器及其用法,仅作科普,对于这一章。我希望大家能够多练习去理解,而不是死记硬背。
Expand Down

0 comments on commit 43d487c

Please sign in to comment.