Skip to content

Instantly share code, notes, and snippets.

@jroesch
Created December 16, 2015 22:54
Show Gist options
  • Save jroesch/08c87784a2ed96f663cf to your computer and use it in GitHub Desktop.
Save jroesch/08c87784a2ed96f663cf to your computer and use it in GitHub Desktop.
trait Interpreter[F[_]] {
def int(i: Int): F[Int]
def add(lhs: F[Int], rhs: F[Int]): F[Int]
}
trait Calc[A] {
def run[F[_]](interp: Interpreter[F]): F[A]
}
object Calc {
def int(i: Int): Calc[Int] = ???
def add(lhs: Calc[Int], rhs: Calc[Int]): Calc[Int] = ???
}
trait Opaque {
type I[X[_]];
type F[_];
def int(i: Int): this.F[Int]
def add(lhs: this.F[Int], rhs: this.F[Int]): this.F[Int]
}
object Help {
trait IO[_] {}
trait Const[A] { type L[B] = A }
}
import Help._
trait Serializer0 extends Opaque {
type I[X[_]] = Interpreter[X];
type F[A] = Const[IO[A]]#L; // this doesn't check
def int(i: Int): IO[Unit] = ???
def add(lhs: IO[Unit], rhs: IO[Unit]): IO[Unit] = ???
}
//
// // A working impl would be something like, but now the `Json` format is exposed
// // and inspectable.. main problem is trying to avoid this
// trait JsonSerializaer extends Interpreter[Const[Json]#l] {
// def int(i: Int): Json = JNumber(i)
// def add(lhs: Json, rhs: Json): Json = JObject(("+", JList(lhs, rhs)))
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment