scalaz.Strong.scala Maven / Gradle / Ivy
package scalaz
////
/**
* Strength on a product.
*/
////
trait Strong[=>:[_, _]] extends Profunctor[=>:] { self =>
////
def first[A, B, C](fa: A =>: B): (A, C) =>: (B, C)
def second[A, B, C](fa: A =>: B): (C, A) =>: (C, B)
////
val strongSyntax = new scalaz.syntax.StrongSyntax[=>:] { def F = Strong.this }
}
object Strong {
@inline def apply[F[_, _]](implicit F: Strong[F]): Strong[F] = F
////
////
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy