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

lspace.decode.Decode.scala Maven / Gradle / Ivy

The newest version!
package lspace.decode

import lspace.codec.ActiveContext

trait Decode[Out, F[_]] {
  type In
  def decode(implicit activeContext: ActiveContext): In => F[Out]
}

object Decode {
  type Aux[Out, F[_], In0] = Decode[Out, F] { type In = In0 }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy