Scala macros is a facility for Scala—a general-purpose programming language—that permits compile-time metaprogramming against Scala syntax trees, from within the Scala language.
I'm making a Scala app that sets by reflection field values. This works OK. However, in order to set field …
scala reflection macros case-class scala-macrosI just wanted to know if it is possible to iterate over a sealed trait in Scala? If not, why …
scala enumeration scala-macros sealedLet's say that I have a lot of similar data classes. Here's an example class User which is defined as …
scala case-class scala-macrosSuppose we want to write a macro that defines an anonymous class with some type members or methods, and then …
scala macros scala-2.10 structural-typing scala-macrosI would like to create a macro generated hierarchy of sealed abstract and case classes. There was an example similar …
scala scala-macros case-classI'm trying to call a Shapeless macro from inside a quasiquote with Scala and I'm not getting what I would …
scala scala-macros shapeless scala-quasiquotes