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

org.atnos.eff.Batchable.scala Maven / Gradle / Ivy

There is a newer version: 7.0.5
Show newest version
package org.atnos.eff

trait Batchable[T[_]] {
  type Z
  type E
  def distribute(z: Z): List[E]
  def batch[X, Y](t1: T[X], t2: T[Y]): Option[T[Z]]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy