trait Zip[F[_]] extends AnyRef
- Alphabetic
- By Inheritance
- Zip
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
- abstract def zip[A, B](a: ⇒ F[A], b: ⇒ F[B]): F[(A, B)]
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def ap(implicit F: Functor[F]): Apply[F]
- def apzip[A, B](f: ⇒ (F[A]) ⇒ F[B], a: ⇒ F[A]): F[(A, B)]
- def apzipPL[A, B](f: ⇒ @?>[F[A], F[B]], a: ⇒ F[A])(implicit M: Monoid[F[B]]): F[(A, B)]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
compose[G[_]](implicit T0: Functor[F], G0: Zip[G]): Zip[[α]F[G[α]]]
The composition of Zip
F
andG
,[x]F[G[x]]
, is a Zip (if F is a Functor) -
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
product[G[_]](implicit G0: Zip[G]): Zip[[α](F[α], G[α])]
The product of Zips
F
andG
,[x](F[x], G[x]])
, is a Zip -
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def zipLaw: ZipLaw
- val zipSyntax: ZipSyntax[F]
- def zipWith[A, B, C](fa: ⇒ F[A], fb: ⇒ F[B])(f: (A, B) ⇒ C)(implicit F: Functor[F]): F[C]