did anybody come to piece of code how to properly convert scala's Future (2.10) to new scalaz7 future ? I know hot to convert scalaz future via scala Promise to scala Future, but not sure how to do it properly around
For example
import scalaz.concurrent.{Future => Zuture}
import scala.concurrent.Future
I want to have implementation of
implicit def scalaF2scalazF[A](in:Future[A]):Zuture[A]=???
Then obviously would be piece of cake to write
implicit def scalaF2scalazTask[A](in:Future[A]):Task[A]=???
because thats is what I really want :-)
scala.concurrent.Future
there. – Blockhouse