当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala Iterator forall()用法及代码示例


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


相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala Iterator forall() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。