cond
方法(或属性)属于 scala.util.Either
对象(object),其相关用法说明如下。
用法:
def cond[A, B](test: Boolean, right: => B, left: => A): Either[A, B]
如果条件满足,则在Right
中返回给定的B
,否则,在Left
中返回给定的A
.
val userInput: String = readLine()
Either.cond(
userInput.forall(_.isDigit) && userInput.size == 10,
PhoneNumber(userInput),
s"The input ($userInput) does not look like a phone number"
源码:
- Either.scala
相关用法
- Scala Either.contains用法及代码示例
- Scala Either.left用法及代码示例
- Scala Either.isRight用法及代码示例
- Scala Either.exists用法及代码示例
- Scala Either.fold用法及代码示例
- Scala Either.getOrElse用法及代码示例
- Scala Either.map用法及代码示例
- Scala Either.swap用法及代码示例
- Scala Either.foreach用法及代码示例
- Scala Either.flatten用法及代码示例
- Scala Either.joinRight用法及代码示例
- Scala Either.MergeableEither用法及代码示例
- Scala Either.toOption用法及代码示例
- Scala Either.joinLeft用法及代码示例
- Scala Either.isLeft用法及代码示例
- Scala Either.orElse用法及代码示例
- Scala Either.forall用法及代码示例
- Scala Either.filterOrElse用法及代码示例
- Scala Either.toSeq用法及代码示例
- Scala Exclusive.combinations用法及代码示例
- Scala Elems.unzip3用法及代码示例
- Scala Elems.unzip用法及代码示例
- Scala Empty.inits用法及代码示例
- Scala Elems.scanRight用法及代码示例
- Scala Empty.unzip用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 Either.cond。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。