final class ApplyOps[F[_], A] extends Ops[F[A]]
- Alphabetic
- By Inheritance
- ApplyOps
- Ops
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
*>[B](fb: F[B]): F[B]
Combine
self
andfb
according toApply[F]
with a function that discards theA
s -
final
def
*>ByName[B](fb: ⇒ F[B]): F[B]
Combine
self
andfb
according toApply[F]
and discard theA
(s), except 'fb' is non-strictly evaluated. -
final
def
<*[B](fb: F[B]): F[A]
Combine
self
andfb
according toApply[F]
with a function that discards theB
s - final def <*>[B](f: F[(A) ⇒ B]): F[B]
-
final
def
<*ByName[B](fb: ⇒ F[B]): F[A]
Combine
self
andfb
according toApply[F]
and discard theB
(s), except 'fb' is non-strictly evaluated. -
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit val F: Apply[F]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[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()
- val self: F[A]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- final def tuple[B](f: F[B]): F[(A, B)]
-
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
- @throws( ... ) @native()
-
final
def
|@|[B](fb: F[B]): ApplicativeBuilder[F, A, B]
DSL for constructing Applicative expressions.
DSL for constructing Applicative expressions.
(f1 |@| f2 |@| ... |@| fn)((v1, v2, ... vn) => ...)
is an alternative toApply[F].applyN(f1, f2, ..., fn)((v1, v2, ... vn) => ...)
(f1 |@| f2 |@| ... |@| fn).tupled
is an alternative toApply[F].applyN(f1, f2, ..., fn)(TupleN.apply _)
Warning: each call to
|@|
leads to an allocation of wrapper object. For performance sensitive code, consider using scalaz.Apply#applyN
directly. -
final
def
⊛[B](fb: F[B]): ApplicativeBuilder[F, A, B]
Alias for
|@|