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

lspace.encode.Encode.scala Maven / Gradle / Ivy

The newest version!
package lspace.encode

import lspace.codec.ActiveContext

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

object Encode {
  type Aux[In, F[_], Out0] = Encode[In, F] { type Out = Out0 }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy