基本就是调用each方法,检查每个数据是否满足iterator条件,其中有一个不满足就抛出$break异常,然后在each方法里面会捕获这个异常。这里注意一下'!!'的用法,可以把某些对象转换成相应的bool值:
!!{} true
!![] true
!!'' false
!!'string' true
!!0 false
下面看一下示例:
复制代码 代码如下:
[].all()
// -> true (empty arrays have no elements that could be false-equivalent)
$R(1, 5).all()
// -> true (all values in [1..5] are true-equivalent)
[0, 1, 2].all()
// -> false (with only one loop cycle: 0 is false-equivalent)
[9, 10, 15].all(function(n) { return n >= 10; })
// -> false (the iterator will return false on 9)
$H({ name: 'John', age: 29, oops: false }).all(function(pair) { return pair.value; })
// -> false (the oops/false pair yields a value of false)