scalaz.syntax

ApplyOps

trait ApplyOps[F[_], A] extends Ops[F[A]]

Wraps a value self and provides methods related to Apply

Source
ApplySyntax.scala
Linear Supertypes
Ops[F[A]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ApplyOps
  2. Ops
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. implicit abstract def F: Apply[F]

  2. abstract def self: F[A]

    Definition Classes
    Ops

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def *>[B](fb: F[B]): F[B]

    Combine self and fb according to Apply[F] with a function that discards the As

  5. final def <*[B](fb: F[B]): F[A]

    Combine self and fb according to Apply[F] with a function that discards the Bs

  6. final def <*>[B](f: F[(A) ⇒ B]): F[B]

  7. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    AnyRef → Any
  22. final def tuple[B](f: F[B]): F[(A, B)]

  23. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. 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 to Apply[F].mapN(f1, f2, ..., fn)((v1, v2, ... vn) => ...)

    (f1 |@| f2 |@| ... |@| fn).tupled is an alternative to Apply[F].mapN(f1, f2, ..., fn)(TupleN.apply _)

    Warning: each call to |@| leads to an allocation of wrapper object. For performance sensitive code, consider using scalaz.Apply#mapN directly.

  27. final def [B](fb: F[B]): ApplicativeBuilder[F, A, B]

    Alias for |@|

Deprecated Value Members

  1. final def <*****>[B, C, D, E, F0](fb: F[B], fc: F[C], fd: F[D], e: F[E])(f: (A, B, C, D, E) ⇒ F0): F[F0]

    Annotations
    @deprecated
    Deprecated

    (Since version 7) Use ^(f1,f2..fN)((a,b,c) => ..) instead

  2. final def <****>[B, C, D, E](fb: F[B], fc: F[C], fd: F[D])(f: (A, B, C, D) ⇒ E): F[E]

    Annotations
    @deprecated
    Deprecated

    (Since version 7) Use ^(f1,f2..fN)((a,b,c) => ..) instead

  3. final def <***>[B, C, D](fb: F[B], fc: F[C])(f: (A, B, C) ⇒ D): F[D]

    Annotations
    @deprecated
    Deprecated

    (Since version 7) Use ^(f1,f2..fN)((a,b,c) => ..) instead

  4. final def <**>[B, C](b: F[B])(f: (A, B) ⇒ C): F[C]

    Annotations
    @deprecated
    Deprecated

    (Since version 7) Use ^(f1,f2..fN)((a,b,c) => ..) instead

  5. final def <|*|>[B](fb: F[B]): F[(A, B)]

    Combine self and fb according to Apply[F] with a function that constructs a Tuple2[A, B]

    Combine self and fb according to Apply[F] with a function that constructs a Tuple2[A, B]

    Annotations
    @deprecated
    Deprecated

    (Since version 7) Use a tuple b instead

  6. final def pair[B](f: F[B]): F[(A, B)]

    Annotations
    @deprecated
    Deprecated

    (Since version 7) Use a tuple b instead

Inherited from Ops[F[A]]

Inherited from AnyRef

Inherited from Any

Ungrouped