當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala Option.forall用法及代碼示例


forall 方法(或屬性)屬於 scala.Option 類(class),其相關用法說明如下。

用法:

@inline
final def forall(p: A => Boolean): Boolean

如果此選項為空,則返回 true或者謂詞p應用於 this 時返回 truescala.Option的值.

這相當於:

option match {
 case Some(x) => p(x)
 case None    => true
}

值參數:

p

要測試的謂詞

源碼:

Option.scala

相關用法


注:本文由純淨天空篩選整理自scala-lang.org大神的英文原創作品 Option.forall。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。