Scala BitSet exists() 方法示例
Scala 位集是一组非负整数,它们表示为打包成 64 位字的可变大小的位数组。 exists() 方法测试一个谓词是否适用于这个可迭代集合的至少一个元素。
Method Definition: def exists()
Return Type: It returns false if this iterable collection is empty, otherwise true.
示例 #1:
// Scala program of exists()
// method
import scala.collection.immutable.BitSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating BitSet
val s1 = BitSet(1, 2, 3, 4, 5)
// 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.immutable.BitSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating BitSet
val s1 = BitSet(1, 2, 3, 4, 5)
// Applying exists method
val result = s1.exists(y => {y % 7 == 0})
// Displays output
println(result)
}
}
输出:
false