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


Scala SortedSet dropWhile()用法及代码示例


dropWhile()方法用于从满足指定条件的SortedSet中删除元素的最长前缀。

函数定义: def dropWhile(p: (A) => Boolean): SortedSet[A]

返回类型: It returns a TreeSet containing all the elements after dropping the longest prefix of elements from the SortedSet that satisfies the stated condition.



范例1:

// Scala program of dropWhile()  
// method  
import scala.collection.immutable.SortedSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating a list  
        var s1 = SortedSet(1, 3, 5, 4, 2)  
          
        // Print the SortedSet 
        println(s1) 
          
        // Applying dropWhile method  
        var res = s1.dropWhile(x => {x % 2 != 0})  
          
        // Displays output  
        println(res)  
      
    }  
} 
输出:
TreeSet(1, 2, 3, 4, 5)
TreeSet(2, 3, 4, 5)

范例2:

// Scala program of dropWhile()  
// method  
import scala.collection.immutable.SortedSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating a list  
        var s1 = SortedSet(15, 17, 21)  
          
        // Print the SortedSet 
        println(s1) 
          
        // Applying dropWhile method  
        var res = s1.dropWhile(x => {x % 3 == 0})  
          
        // Displays output  
        println(res)  
      
    }  
} 
输出:
TreeSet(15, 17, 21)
TreeSet(17, 21)


相关用法


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