在Scala ListSet中,exists()方法用於檢查給定謂詞是否滿足listSet的元素。
函數定義: def exists(p: (A) => Boolean): Boolean
返回類型: It returns true if the stated predicate holds true for some elements of the listset else it returns false.
範例1:
// Scala program of exists()
// method
import scala.collection.immutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating Listset
val m1 = ListSet(1, 2, 3, 4, 5, 7)
// Applying exists method
val result = m1.exists(_==9)
// Displays output
println(result)
}
}
輸出:
false
範例2:
// Scala program of exists()
// method
import scala.collection.immutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating listset
val m1 = ListSet(1, 2, 3, 4, 5, 7)
// Applying exists method
val result = m1.exists(_>9)
// Displays output
println(result)
}
}
輸出:
false
相關用法
- Scala ListSet max()用法及代碼示例
- Scala ListSet sum()用法及代碼示例
- Scala ListSet min()用法及代碼示例
- Scala ListSet find()用法及代碼示例
- Scala ListSet filter()用法及代碼示例
- Scala ListSet count()用法及代碼示例
- Scala ListSet isEmpty()用法及代碼示例
- Scala ListSet filterNot()用法及代碼示例
- Scala ListSet takeWhile()用法及代碼示例
- Scala ListSet size()用法及代碼示例
- Scala ListSet product()用法及代碼示例
- Scala Listset apply()用法及代碼示例
- Scala Set exists()用法及代碼示例
- Scala Map exists()用法及代碼示例
注:本文由純淨天空篩選整理自IshwarGupta大神的英文原創作品 Scala ListSet exists() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。