scalan.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common_2.12 Show documentation
Show all versions of common_2.12 Show documentation
Compiling Scala to Something special
The newest version!
import scala.reflect.ClassTag
package object scalan {
/** Allows implicit resolution to find appropriate instance of ClassTag in
* the scope where RType is implicitly available. */
implicit def rtypeToClassTag[A](implicit t: RType[A]): ClassTag[A] = t.classTag
}