IsomorphismUnzip

trait IsomorphismUnzip[F[_], G[_]] extends Unzip[F]
trait Unzip[F]
class Object
trait Matchable
class Any

Value members

Abstract methods

def iso: IsoFunctor[F, G]

Concrete methods

def unzip[A, B](a: F[(A, B)]): (F[A], F[B])

Inherited methods

def compose[G[_]](implicit T0: Functor[F], G0: Unzip[G]): Unzip[[α] =>> F[G[α]]]

The composition of Unzips F and G, [x]F[G[x]], is an Unzip

The composition of Unzips F and G, [x]F[G[x]], is an Unzip

Inherited from
Unzip
def firsts[A, B](a: F[(A, B)]): F[A]
Inherited from
Unzip
def product[G[_]](implicit G0: Unzip[G]): Unzip[[α] =>> (F[α], G[α])]

The product of Unzips F and G, [x](F[x], G[x]]), is an Unzip

The product of Unzips F and G, [x](F[x], G[x]]), is an Unzip

Inherited from
Unzip
def seconds[A, B](a: F[(A, B)]): F[B]
Inherited from
Unzip
def unzip3[A, B, C](x: F[(A, (B, C))]): (F[A], F[B], F[C])
Inherited from
Unzip
def unzip4[A, B, C, D](x: F[(A, (B, (C, D)))]): (F[A], F[B], F[C], F[D])
Inherited from
Unzip
def unzip5[A, B, C, D, E](x: F[(A, (B, (C, (D, E))))]): (F[A], F[B], F[C], F[D], F[E])
Inherited from
Unzip
def unzip6[A, B, C, D, E, G](x: F[(A, (B, (C, (D, (E, G)))))]): (F[A], F[B], F[C], F[D], F[E], F[G])
Inherited from
Unzip
def unzip7[A, B, C, D, E, G, H](x: F[(A, (B, (C, (D, (E, (G, H))))))]): (F[A], F[B], F[C], F[D], F[E], F[G], F[H])
Inherited from
Unzip

Inherited fields

Inherited from
Unzip

Implicits

Implicits

implicit
def G: Unzip[G]