作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我看到它们(where
和 takeWhile
)具有相同的功能..否则我可能会在这里漏掉一些东西!
最佳答案
documentation for Iterable.where
说:
Returns a new lazy
Iterable
with all elements that satisfy the predicatetest
.
documentation Iterable.takeWhile
说:
Returns a lazy iterable of the leading elements satisfying
test
.
(强调已添加)。
换句话说,Iterable.takeWhile
将在到达第一个不满足test
回调的项目时停止迭代。
一个具体的例子:
var list = [1, 1, 2, 3, 5, 8];
print(list.where((x) => x.isOdd).toList()); // Prints: [1, 1, 3, 5]
print(list.takeWhile((x) => x.isOdd).toList()); // Prints: [1, 1]
关于dart - 过滤: Where and takeWhile in Dart有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67409488/
我是一名优秀的程序员,十分优秀!