Packages

sealed abstract class AppFunc[F[_], A, B] extends Func[F, A, B]

An implementation of Func that's specialized to Applicative.

Self Type
AppFunc[F, A, B]
Source
Func.scala
Linear Supertypes
Func[F, A, B], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AppFunc
  2. Func
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def F: Applicative[F]
  2. abstract def run: (A) ⇒ F[B]
    Definition Classes
    Func

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def andThen[G[_], C](g: AppFunc[G, B, C]): AppFunc[[γ$3$]Nested[F, G, γ$3$], A, C]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  7. def compose[G[_], C](g: AppFunc[G, C, A]): AppFunc[[γ$0$]Nested[G, F, γ$0$], C, B]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. def map[C](f: (B) ⇒ C): AppFunc[F, A, C]
  14. def map[C](f: (B) ⇒ C)(implicit FF: Functor[F]): Func[F, A, C]
    Definition Classes
    Func
  15. def mapK[G[_]](f: ~>[F, G]): Func[G, A, B]

    Modify the context F using transformation f.

    Modify the context F using transformation f.

    Definition Classes
    Func
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  19. def product[G[_]](g: AppFunc[G, A, B]): AppFunc[[α]Tuple2K[F, G, α], A, B]
  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. def traverse[G[_]](ga: G[A])(implicit GG: Traverse[G]): F[G[B]]
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Func[F, A, B]

Inherited from AnyRef

Inherited from Any

Ungrouped