matches
方法(或属性)属于 scala.quoted.Quotes
特性(trait),其相关用法说明如下。
用法:
def matches(that: Expr[Any]): Boolean
模式匹配 this
与 that
。有效地执行深度相等检查。它相当于
this match
case '{...} => true // where the contents of the pattern are the contents of `that`
case _ => false
源码:
- Quotes.scala
相关用法
- Scala Quotes.reflectModule用法及代码示例
- Scala Quotes.reflect用法及代码示例
- Scala Queue.runWith用法及代码示例
- Scala Queue drop()用法及代码示例
- Scala Queue toMap()用法及代码示例
- Scala Queue.combinations用法及代码示例
- Scala Queue.elementWise用法及代码示例
- Scala Queue.permutations用法及代码示例
- Scala Queue filter()用法及代码示例
- Scala Queue dropWhile()用法及代码示例
- Scala Queue take()用法及代码示例
- Scala Queue.groupBy用法及代码示例
- Scala Queue.addString用法及代码示例
- Scala Queue.sliding用法及代码示例
- Scala Queue tail()用法及代码示例
- Scala Queue diff()用法及代码示例
- Scala Queue max()用法及代码示例
- Scala Queue.sizeIs用法及代码示例
- Scala Queue toArray()用法及代码示例
- Scala Queue.sortWith用法及代码示例
- Scala Queue.groupMapReduce用法及代码示例
- Scala Queue exists()用法及代码示例
- Scala Queue toSeq()用法及代码示例
- Scala Queue.collectFirst用法及代码示例
- Scala Queue clear()用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 Quotes.matches。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。