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

cats.arrow.Split.scala Maven / Gradle / Ivy

package cats
package arrow

trait Split[F[_, _]] extends Compose[F] { self =>
  def split[A, B, C, D](f: F[A, B], g: F[C, D]): F[(A,  C), (B, D)]
}

object Split {
  def apply[F[_, _]](implicit ev: Split[F]): Split[F] = ev
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy