trait ApplicativeLocal[F[_], E] extends ApplicativeAsk[F, E] with Serializable

ApplicativeLocal[F, E] lets you alter the E value that is observed by an F[A] value using ask; the modification can only be observed from within that F[A] value.

ApplicativeLocal[F, E] has three external laws:

def askReflectsLocal(f: E => E) = {
  local(f)(ask) <-> ask map f
}

def localPureIsPure[A](a: A, f: E => E) = {
  local(f)(pure(a)) <-> pure(a)
}

def localDistributesOverAp[A, B](fa: F[A], ff: F[A => B], f: E => E) = {
  local(f)(ff ap fa) <-> local(f)(ff) ap local(f)(fa)
}

ApplicativeLocal has one internal law:

def scopeIsLocalConst(fa: F[A], e: E) = {
  scope(e)(fa) <-> local(_ => e)(fa)
}
Linear Supertypes
ApplicativeAsk[F, E], Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ApplicativeLocal
  2. ApplicativeAsk
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val applicative: Applicative[F]
    Definition Classes
    ApplicativeAsk
  2. abstract def ask: F[E]
    Definition Classes
    ApplicativeAsk
  3. abstract def local[A](f: (E) ⇒ E)(fa: F[A]): F[A]
  4. abstract def reader[A](f: (E) ⇒ A): F[A]
    Definition Classes
    ApplicativeAsk
  5. abstract def scope[A](e: E)(fa: F[A]): F[A]

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from ApplicativeAsk[F, E]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped