All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lspace.codec.ContextedT.scala Maven / Gradle / Ivy

The newest version!
package lspace.codec

object ContextedT {
  implicit def withContext[T](t: T)(implicit activeContext: ActiveContext): ContextedT[T] = ContextedT(t)
}
case class ContextedT[+T](t: T)(implicit val activeContext: ActiveContext) {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy