Forked from alexarchambault/gist:7532dcc14ba84b7974ec
Last active
August 29, 2015 14:06
-
-
Save travisbrown/8b37a1e4205b3e077f2b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait Obs[+A] { def value: A } | |
object Obs { | |
import shapeless._, poly._, ops.hlist.Mapper, ops.function.FnToProduct | |
object values extends (Obs ~> Id) { | |
def apply[T](t: Obs[T]) = t.value | |
} | |
def calculate[T, V <: HList, L <: HList, F, Z](obss: T)(f: F)(implicit | |
gen: Generic.Aux[T, L], | |
mapper: Mapper.Aux[values.type, L, V], | |
ftp: FnToProduct.Aux[F, V => Z] | |
): Z = ftp(f)(mapper.apply(gen.to(obss))) | |
} | |
object ObsExample { | |
import Obs._ | |
val obs1: Obs[Double] = new Obs[Double] { val value = 10.0 } | |
val obs2: Obs[Option[Int]] = new Obs[Option[Int]] { val value = Some(1) } | |
def func(d: Double, i: Option[Int]) = d + i.getOrElse(0).toDouble | |
println(calculate(obs1, obs2)(func _)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment