concur-core-0.1.0.0: A client side web UI framework for Haskell. Core framework.

Safe HaskellSafe
LanguageHaskell2010

Control.ShiftMap

Synopsis

Documentation

class ShiftMap s t where Source #

Mapping between Natural Transformations

Minimal complete definition

shiftMap

Methods

shiftMap :: (s ~> s) -> t ~> t Source #

Instances
ShiftMap m m Source # 
Instance details

Defined in Control.ShiftMap

Methods

shiftMap :: (m ~> m) -> m ~> m Source #

ShiftMap m (StateT s m) Source # 
Instance details

Defined in Control.ShiftMap

Methods

shiftMap :: (m ~> m) -> StateT s m ~> StateT s m Source #

ShiftMap m (IdentityT m) Source # 
Instance details

Defined in Control.ShiftMap

Methods

shiftMap :: (m ~> m) -> IdentityT m ~> IdentityT m Source #