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


Scala compiletime.summonFrom用法及代碼示例


summonFrom 方法(或屬性)屬於 scala.compiletime 包(package),其相關用法說明如下。

用法:

transparent inline def summonFrom[T](f: Nothing => T): T

召喚首先與列出的案例之一匹配。例如:在

package scala.compiletime
trait Snippet0 { self: compiletime.package$package.type =>
  type A
  trait B
  type C
  inline def f = {
  given B with { }
  
  summonFrom {
    case given A => 1
    case given B => 2
    case given C => 3
    case _ => 4
  }
  }
}

返回的值為 2

源碼:

package.scala

相關用法


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