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


Scala UnliftOps.unlift用法及代碼示例


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

用法:

def unlift: PartialFunction[A, B]

將可選函數轉換為部分函數。

例子:

Function.unlift 不同,此 UnliftOps.unlift 方法可用於提取器.

val of: Int => Option[String] = { i =>
  if (i == 2) {
    Some("matched by an optional function")
  } else {
    None
  }
}
util.Random.nextInt(4) match {
  case of.unlift(m) => // Convert an optional function to a pattern
    println(m)
  case _ =>
    println("Not matched")
}

源碼:

Function1.scala

相關用法


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