forall()方法属于AbstractIterator类的具体值成员。它在IterableOnceOps类中定义。它测试使用的谓词是否对指定集合的所有元素成立。它对于无限大小的集合可能不会终止。
函数定义: def forall(p:(A) => Boolean):Boolean
返回类型: It returns true if the stated collection is empty or if the given predicate p holds for all elements of this collection, else it returns false.
范例1:
// Scala program of forall()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating an Iterator
val iter = Iterator(3, 6, 15, 12, 21)
// Applying forall method
val result= iter.forall(x => {x % 3 == 0})
// Displays output
println(result)
}
}
输出:
true
范例2:
// Scala program of forall()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating an Iterator
val iter = Iterator(3, 6, 15, 19, 21)
// Applying forall method
val result= iter.forall(x => {x % 3 == 0})
// Displays output
println(result)
}
}
输出:
false
相关用法
- Scala Set forall()用法及代码示例
- Scala List forall()用法及代码示例
- Scala TreeSet forall()用法及代码示例
- Scala SortedSet forall()用法及代码示例
- Scala Queue forall()用法及代码示例
- Scala Stack forall()用法及代码示例
- Scala Iterator zip()用法及代码示例
- Scala Iterator seq()用法及代码示例
- Scala Iterator take()用法及代码示例
- Scala Iterator map()用法及代码示例
- Scala Iterator next()用法及代码示例
- Scala Map iterator用法及代码示例
- Scala Iterator sum()用法及代码示例
- Scala Iterator max()用法及代码示例
- Scala Iterator min()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala Iterator forall() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。