当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala Quotes.matches用法及代码示例


matches 方法(或属性)属于 scala.quoted.Quotes 特性(trait),其相关用法说明如下。

用法:

def matches(that: Expr[Any]): Boolean

模式匹配 thisthat 。有效地执行深度相等检查。它相当于

this match
  case '{...} => true // where the contents of the pattern are the contents of `that`
  case _ => false

源码:

Quotes.scala

相关用法


注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 Quotes.matches。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。