scalaz

ComonadStore

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]], Functor[[x]F[S, x]], InvariantFunctor[[x]F[S, x]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ComonadStore
  2. Comonad
  3. Cobind
  4. Functor
  5. InvariantFunctor
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait CobindLaws extends AnyRef

    Definition Classes
    Cobind
  2. trait ComonadLaws extends CobindLaws

    Definition Classes
    Comonad
  3. trait FunctorLaw extends InvariantFunctorLaw

    Definition Classes
    Functor
  4. trait InvariantFunctorLaw extends AnyRef

    Definition Classes
    InvariantFunctor

Abstract Value Members

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

    Also know as extend

    Also know as extend

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

    Also known as extract / copure

    Also known as extract / copure

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

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

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

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

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

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 apply[A, B](fa: F[S, A])(f: (A) ⇒ B): F[S, B]

    Alias for map.

    Alias for map.

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

    Definition Classes
    Any
  6. def bicompose[G[_, _]](implicit arg0: Bifunctor[G]): Bifunctor[[α, β]F[S, G[α, β]]]

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

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

    Definition Classes
    Functor
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def cobindLaw: CobindLaws

    Definition Classes
    Cobind
  9. val cobindSyntax: CobindSyntax[[x]F[S, x]]

    Definition Classes
    Cobind
  10. def cojoin[A](fa: F[S, A]): F[S, F[S, A]]

    Also known as duplicate

    Also known as duplicate

    Definition Classes
    Cobind
  11. def comonadLaw: ComonadLaws

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

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

    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
  14. final def copure[A](p: F[S, A]): A

    alias for copoint

    alias for copoint

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

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

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

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

  19. final def extend[A, B](fa: F[S, A])(f: (F[S, A]) ⇒ B): F[S, B]

    Definition Classes
    Cobind
  20. def finalize(): Unit

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

    Twin all As in fa.

    Twin all As in fa.

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

    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
  23. def functorLaw: FunctorLaw

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

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

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

    Definition Classes
    AnyRef → Any
  27. def icompose[G[_]](implicit G0: Contravariant[G]): Contravariant[[α]F[S, G[α]]]

    The composition of Functor F and Contravariant G, [x]F[G[x]], is contravariant.

    The composition of Functor F and Contravariant G, [x]F[G[x]], is contravariant.

    Definition Classes
    Functor
  28. def invariantFunctorLaw: InvariantFunctorLaw

    Definition Classes
    InvariantFunctor
  29. val invariantFunctorSyntax: InvariantFunctorSyntax[[x]F[S, x]]

    Definition Classes
    InvariantFunctor
  30. final def isInstanceOf[T0]: Boolean

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

    Lift f into F.

    Lift f into F.

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

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

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

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

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

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

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

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

    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
  38. def seek[A](s: S, w: F[S, A]): F[S, A]

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

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

    Inject a to the left of Bs in f.

    Inject a to the left of Bs in f.

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

    Inject b to the right of As in f.

    Inject b to the right of As in f.

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

    Definition Classes
    AnyRef
  43. def toString(): String

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

    Empty fa of meaningful pure values, preserving its structure.

    Empty fa of meaningful pure values, preserving its structure.

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. def xmap[A, B](fa: F[S, A], f: (A) ⇒ B, g: (B) ⇒ A): F[S, B]

    Converts ma to a value of type F[B] using the provided functions f and g.

    Converts ma to a value of type F[B] using the provided functions f and g.

    Definition Classes
    FunctorInvariantFunctor
  49. def xmapb[A, B](ma: F[S, A])(b: BijectionT.Bijection[A, B]): F[S, B]

    Converts ma to a value of type F[B] using the provided bijection.

    Converts ma to a value of type F[B] using the provided bijection.

    Definition Classes
    InvariantFunctor
  50. def xmapi[A, B](ma: F[S, A])(iso: Isomorphism.<=>[A, B]): F[S, B]

    Converts ma to a value of type F[B] using the provided isomorphism.

    Converts ma to a value of type F[B] using the provided isomorphism.

    Definition Classes
    InvariantFunctor

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped