在Scala可变集合中,SortedSet exists()方法用于测试谓词是否对SortedSet的某些元素成立。
函数定义: def exists(p:(A) => Boolean):Boolean
返回类型: It returns true if the stated predicate holds true for some elements of the SortedSet else it returns false.
范例1:
// Scala program of exists()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a list
val s1 = SortedSet(17, 7, 27, 37)
// Applying exists method
val result = s1.exists(y => {y % 3 == 0})
// Displays output
println(result)
}
}
输出:
true
范例2:
// Scala program of exists()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a list
val s1 = SortedSet(15, 2, 3, 45, 6)
// Applying exists method
val result = s1.exists(y => {y % 7 == 0})
// Displays output
println(result)
}
}
输出:
false
相关用法
- Scala mutable SortedSet contains()用法及代码示例
- Scala Mutable SortedSet max()用法及代码示例
- Scala Mutable SortedSet min()用法及代码示例
- Scala Mutable SortedSet sum()用法及代码示例
- Scala Mutable SortedSet take()用法及代码示例
- Scala mutable SortedSet &~()用法及代码示例
- Scala mutable SortedSet &()用法及代码示例
- Scala mutable SortedSet ++()用法及代码示例
- Scala Mutable SortedSet map()用法及代码示例
- Scala Mutable SortedSet -()用法及代码示例
- Scala Mutable SortedSet last()用法及代码示例
- Scala Mutable SortedSet +()用法及代码示例
- Scala Mutable SortedSet tail()用法及代码示例
- Scala mutable SortedSet equals()用法及代码示例
- Scala Mutable SortedSet toString()用法及代码示例
- Scala mutable SortedSet drop()用法及代码示例
- Scala mutable SortedSet subsetOf()用法及代码示例
- Scala Mutable SortedSet toBuffer()用法及代码示例
- Scala mutable SortedSet dropRight()用法及代码示例
- Scala mutable SortedSet diff()用法及代码示例
注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Scala Mutable SortedSet exists() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。