Module
React.Redux.Reducer
- Package
- purescript-react-redux
- Repository
- ethul/purescript-react-redux
#Reducer Source
newtype Reducer action state state'Constructors
Reducer (action -> state -> state')
Instances
Newtype (Reducer action state state') _Semigroupoid (Reducer action)Category (Reducer action)Functor (Reducer action state)Apply (Reducer action state)Applicative (Reducer action state)Bind (Reducer action state)Monad (Reducer action state)(Semigroup state') => Semigroup (Reducer action state state')(Monoid state') => Monoid (Reducer action state state')
#reducerFlipped Source
reducerFlipped :: forall state' state action. (state -> action -> state') -> Reducer action state state'