AssociativeBothOps

zio.prelude.AssociativeBothSyntax.AssociativeBothOps
implicit class AssociativeBothOps[F[_], A](fa: => F[A])

Provides infix syntax for associative operations for invariant types.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def <*>[B](fb: => F[B])(implicit both: AssociativeBoth[F]): F[(A, B)]

A symbolic alias for zip.

A symbolic alias for zip.

Attributes

def zip[B](fb: => F[B])(implicit both: AssociativeBoth[F]): F[(A, B)]

Combines two values of types F[A] and F[B] to produce an F[(A, B)].

Combines two values of types F[A] and F[B] to produce an F[(A, B)].

Attributes