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

paperdoll.scalaz.concurrent.package.scala Maven / Gradle / Ivy

There is a newer version: 0.5
Show newest version
package paperdoll.scalaz

import paperdoll.core.layer.Layer
import scalaz.concurrent.Future
import scalaz.concurrent.Task

package object concurrent {
  type Future_ = Layer {
    type F[X] = Future[X]
  }
  type Task_ = Layer {
    type F[X] = Task[X]
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy