Scala Bitsets are sets of non-negative integers which are represented as variable-size arrays of bits packed into 64-bit words. The exists() method tests whether a predicate holds for at least one element of this iterable collection.
Method Definition: def exists()
Return Type: It returns false if this iterable collection is empty, otherwise true.
Example #1:
import scala.collection.immutable.BitSet
object GfG
{
def main(args : Array[String])
{
val s 1 = BitSet( 1 , 2 , 3 , 4 , 5 )
val result = s 1 .exists(y => {y % 3 == 0 })
println(result)
}
}
|
Example #2:
import scala.collection.immutable.BitSet
object GfG
{
def main(args : Array[String])
{
val s 1 = BitSet( 1 , 2 , 3 , 4 , 5 )
val result = s 1 .exists(y => {y % 7 == 0 })
println(result)
}
}
|