Trait/Object

scalaz

ComonadStore

Related Docs: object ComonadStore | package scalaz

Permalink

trait ComonadStore[F[_, _], S] extends Comonad[[x]F[S, x]]

Source
ComonadStore.scala
Linear Supertypes
Comonad[[x]F[S, x]], Cobind[[x]F[S, x]], Cojoin[[x]F[S, x]], Functor[[x]F[S, x]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ComonadStore
  2. Comonad
  3. Cobind
  4. Cojoin
  5. Functor
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait ComonadLaws extends AnyRef

    Permalink
    Definition Classes
    Comonad
  2. trait FunctorLaw extends AnyRef

    Permalink
    Definition Classes
    Functor

Abstract Value Members

  1. abstract def cobind[A, B](fa: F[S, A])(f: (F[S, A]) ⇒ B): F[S, B]

    Permalink

    Also know as extend

    Also know as extend

    Definition Classes
    Cobind
  2. abstract def cojoin[A](a: F[S, A]): F[S, F[S, A]]

    Permalink

    Also known as duplicate

    Also known as duplicate

    Definition Classes
    Cojoin
  3. abstract def copoint[A](p: F[S, A]): A

    Permalink

    Also known as extract / copure

    Also known as extract / copure

    Definition Classes
    Comonad
  4. abstract def map[A, B](fa: F[S, A])(f: (A) ⇒ B): F[S, B]

    Permalink

    Lift f into F and apply to F[A].

    Lift f into F and apply to F[A].

    Definition Classes
    Functor
  5. abstract def peek[A](s: S, w: F[S, A]): A

    Permalink
  6. abstract def pos[A](w: F[S, A]): S

    Permalink

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply[A, B](fa: F[S, A])(f: (A) ⇒ B): F[S, B]

    Permalink

    Alias for map.

    Alias for map.

    Definition Classes
    Functor
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. val cobindSyntax: CobindSyntax[[x]F[S, x]]

    Permalink
    Definition Classes
    Cobind
  8. val cojoinSyntax: CojoinSyntax[[x]F[S, x]]

    Permalink
    Definition Classes
    Cojoin
  9. def comonadLaw: ComonadLaws

    Permalink
    Definition Classes
    Comonad
  10. val comonadSyntax: ComonadSyntax[[x]F[S, x]]

    Permalink
    Definition Classes
    Comonad
  11. def compose[G[_]](implicit G0: Functor[G]): Functor[[α]F[S, G[α]]]

    Permalink

    The composition of Functors F and G, [x]F[G[x]], is a Functor

    The composition of Functors F and G, [x]F[G[x]], is a Functor

    Definition Classes
    Functor
  12. def copure[A](p: F[S, A]): A

    Permalink

    alias for copoint

    alias for copoint

    Definition Classes
    Comonad
  13. def counzip[A, B](a: \/[F[S, A], F[S, B]]): F[S, \/[A, B]]

    Permalink
    Definition Classes
    Functor
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def experiment[G[_], A](s: (S) ⇒ G[S], w: F[S, A])(implicit FG: Functor[G]): G[A]

    Permalink
  17. def extend[A, B](a: F[S, A])(f: (F[S, A]) ⇒ B): F[S, B]

    Permalink
    Definition Classes
    Cojoin
  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def fpair[A](fa: F[S, A]): F[S, (A, A)]

    Permalink

    Twin all As in fa.

    Twin all As in fa.

    Definition Classes
    Functor
  20. def fproduct[A, B](fa: F[S, A])(f: (A) ⇒ B): F[S, (A, B)]

    Permalink

    Pair all As in fa with the result of function application.

    Pair all As in fa with the result of function application.

    Definition Classes
    Functor
  21. def functorLaw: FunctorLaw

    Permalink
    Definition Classes
    Functor
  22. val functorSyntax: FunctorSyntax[[x]F[S, x]]

    Permalink
    Definition Classes
    Functor
  23. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  26. def lift[A, B](f: (A) ⇒ B): (F[S, A]) ⇒ F[S, B]

    Permalink

    Lift f into F.

    Lift f into F.

    Definition Classes
    Functor
  27. def mapply[A, B](a: A)(f: F[S, (A) ⇒ B]): F[S, B]

    Permalink

    Lift apply(a), and apply the result to f.

    Lift apply(a), and apply the result to f.

    Definition Classes
    Functor
  28. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. def peeks[A](s: (S) ⇒ S, w: F[S, A]): A

    Permalink
  32. def product[G[_]](implicit G0: Functor[G]): Functor[[α](F[S, α], G[α])]

    Permalink

    The product of Functors F and G, [x](F[x], G[x]]), is a Functor

    The product of Functors F and G, [x](F[x], G[x]]), is a Functor

    Definition Classes
    Functor
  33. def seek[A](s: S, w: F[S, A]): F[S, A]

    Permalink
  34. def seeks[A](s: (S) ⇒ S, w: F[S, A]): F[S, A]

    Permalink
  35. def strengthL[A, B](a: A, f: F[S, B]): F[S, (A, B)]

    Permalink

    Inject a to the left of Bs in f.

    Inject a to the left of Bs in f.

    Definition Classes
    Functor
  36. def strengthR[A, B](f: F[S, A], b: B): F[S, (A, B)]

    Permalink

    Inject b to the right of As in f.

    Inject b to the right of As in f.

    Definition Classes
    Functor
  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  38. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  39. def void[A](fa: F[S, A]): F[S, Unit]

    Permalink

    Empty fa of meaningful pure values, preserving its structure.

    Empty fa of meaningful pure values, preserving its structure.

    Definition Classes
    Functor
  40. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Comonad[[x]F[S, x]]

Inherited from Cobind[[x]F[S, x]]

Inherited from Cojoin[[x]F[S, x]]

Inherited from Functor[[x]F[S, x]]

Inherited from AnyRef

Inherited from Any

Ungrouped