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


Scala ListSet takeWhile()用法及代码示例



在Scala ListSet中,takeWhile()只要满足指定的条件,就可以使用“方法”从列表中查找元素。

函数定义: def takeWhile(p: (A) => Boolean): ListSet[A]

返回类型: It returns the elements from the list as long as the stated condition is satisfied.



范例1:

// Scala program of takeWhile()  
// method  
import scala.collection.immutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating a list  
        val m1 = ListSet(1, 2, 3, 4, 5, 7) 
      
          
        // Applying takeWhile method  
        val result = m1.takeWhile(_ > 3)  
          
        // Displays output  
        println(result)  
      
    }  
}
输出:
ListSet(4, 5, 7)

范例2:

// Scala program of takeWhile()  
// method  
import scala.collection.immutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating a list  
        val m1 = ListSet(1, 2, 3, 4, 5, 7) 
      
          
        // Applying takeWhile method  
        val result = m1.takeWhile(_ > 7)  
          
        // Displays output  
        println(result)  
      
    }  
}
输出:
ListSet()


相关用法


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