Copyright | (c) Edward Kmett & Sjoerd Visscher 2011 |
---|---|
License | BSD3 |
Maintainer | ekmett@gmail.com |
Stability | experimental |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
This is a generalized Store
Comonad
, parameterized by a Representable
Functor
.
The representation of that Functor
serves as the index of the store.
This can be useful if the representable functor serves to memoize its contents and will be inspected often.
Synopsis
- type Store (g :: Type -> Type) = StoreT g Identity
- store :: forall (g :: Type -> Type) a. Representable g => (Rep g -> a) -> Rep g -> Store g a
- runStore :: forall (g :: Type -> Type) a. Representable g => Store g a -> (Rep g -> a, Rep g)
- data StoreT (g :: Type -> Type) (w :: Type -> Type) a = StoreT (w (g a)) (Rep g)
- storeT :: forall w (g :: Type -> Type) a. (Functor w, Representable g) => w (Rep g -> a) -> Rep g -> StoreT g w a
- runStoreT :: forall w (g :: Type -> Type) a. (Functor w, Representable g) => StoreT g w a -> (w (Rep g -> a), Rep g)
- class Comonad w => ComonadStore s (w :: Type -> Type) | w -> s where
Documentation
type Store (g :: Type -> Type) = StoreT g Identity Source #
A memoized store comonad parameterized by a representable functor g
, where
the representatation of g
, Rep g
is the index of the store.
:: forall (g :: Type -> Type) a. Representable g | |
=> (Rep g -> a) | computation |
-> Rep g | index |
-> Store g a |
Construct a store comonad computation from a function and a current index.
(The inverse of runStore
.)
:: forall (g :: Type -> Type) a. Representable g | |
=> Store g a | a store to access |
-> (Rep g -> a, Rep g) | initial state |
Unwrap a store comonad computation as a function and a current index.
(The inverse of store
.)
data StoreT (g :: Type -> Type) (w :: Type -> Type) a Source #
A store transformer comonad parameterized by:
g
- A representable functor used to memoize results for an indexRep g
w
- The inner comonad.
Instances
storeT :: forall w (g :: Type -> Type) a. (Functor w, Representable g) => w (Rep g -> a) -> Rep g -> StoreT g w a Source #
runStoreT :: forall w (g :: Type -> Type) a. (Functor w, Representable g) => StoreT g w a -> (w (Rep g -> a), Rep g) Source #
class Comonad w => ComonadStore s (w :: Type -> Type) | w -> s where #
peeks :: (s -> s) -> w a -> a #
seeks :: (s -> s) -> w a -> w a #
experiment :: Functor f => (s -> f s) -> w a -> f a #
Instances
ComonadStore s w => ComonadStore s (Cofree w) | |
ComonadStore s w => ComonadStore s (CoiterT w) | |
(Comonad w, Representable g, Rep g ~ s) => ComonadStore s (StoreT g w) Source # | |
Defined in Control.Comonad.Representable.Store | |
ComonadStore s w => ComonadStore s (EnvT e w) | |
Comonad w => ComonadStore s (StoreT s w) | |
(ComonadStore s w, Monoid m) => ComonadStore s (TracedT m w) | |
Defined in Control.Comonad.Store.Class | |
ComonadStore s w => ComonadStore s (IdentityT w) | |
Defined in Control.Comonad.Store.Class |