Safe Haskell | Safe |
---|---|
Language | Haskell98 |
Synopsis
- zoom :: Monad m => LensLike' (Zooming m c) a b -> StateT b m c -> StateT a m c
- use :: Monad m => FoldLike b a a' b b' -> StateT a m b
- uses :: Monad m => FoldLike r a a' b b' -> (b -> r) -> StateT a m r
- (%=) :: Monad m => ASetter a a b b' -> (b -> b') -> StateT a m ()
- assign :: Monad m => ASetter a a b b' -> b' -> StateT a m ()
- (.=) :: Monad m => ASetter a a b b' -> b' -> StateT a m ()
- (%%=) :: Monad m => LensLike (Writer c) a a b b' -> (b -> (c, b')) -> StateT a m c
- (<~) :: Monad m => ASetter a a b b' -> StateT a m b' -> StateT a m ()
- (+=) :: (Monad m, Num b) => ASetter' a b -> b -> StateT a m ()
- (-=) :: (Monad m, Num b) => ASetter' a b -> b -> StateT a m ()
- (*=) :: (Monad m, Num b) => ASetter' a b -> b -> StateT a m ()
- (//=) :: (Monad m, Fractional b) => ASetter' a b -> b -> StateT a m ()
- (&&=) :: Monad m => ASetter' a Bool -> Bool -> StateT a m ()
- (||=) :: Monad m => ASetter' a Bool -> Bool -> StateT a m ()
- (<>=) :: (Monoid o, Monad m) => ASetter' a o -> o -> StateT a m ()
- (%!=) :: Monad m => ASetter a a b b' -> (b -> b') -> StateT a m ()
- (+!=) :: (Monad m, Num b) => ASetter' a b -> b -> StateT a m ()
- (-!=) :: (Monad m, Num b) => ASetter' a b -> b -> StateT a m ()
- (*!=) :: (Monad m, Num b) => ASetter' a b -> b -> StateT a m ()
- (//!=) :: (Monad m, Fractional b) => ASetter' a b -> b -> StateT a m ()
- (&&!=) :: Monad m => ASetter' a Bool -> Bool -> StateT a m ()
- (||!=) :: Monad m => ASetter' a Bool -> Bool -> StateT a m ()
- (<>!=) :: (Monoid o, Monad m) => ASetter' a o -> o -> StateT a m ()
- data Zooming m c a
- type LensLike f a a' b b' = (b -> f b') -> a -> f a'
- type LensLike' f a b = (b -> f b) -> a -> f a
- type FoldLike r a a' b b' = LensLike (Constant r) a a' b b'
- data Constant a (b :: k) :: forall k. * -> k -> *
- type ASetter a a' b b' = LensLike Identity a a' b b'
- type ASetter' a b = LensLike' Identity a b
- data Identity a
- data StateT s (m :: * -> *) a
- type Writer w = WriterT w Identity
- class Semigroup a => Monoid a
Documentation
zoom :: Monad m => LensLike' (Zooming m c) a b -> StateT b m c -> StateT a m c Source #
zoom :: Monad m => Lens' a b -> StateT b m c -> StateT a m c
Lift a stateful operation on a field to a stateful operation on the whole state. This is a good way to call a "subroutine" that only needs access to part of the state.
zoom :: (Monoid c, Monad m) => Traversal' a b -> StateT b m c -> StateT a m c
Run the "subroutine" on each element of the traversal in turn and mconcat
all the results together.
zoom :: Monad m => Traversal' a b -> StateT b m () -> StateT a m ()
Run the "subroutine" on each element the traversal in turn.
use :: Monad m => FoldLike b a a' b b' -> StateT a m b Source #
use :: Monad m => Getter a a' b b' -> StateT a m b
Retrieve a field of the state
use :: (Monoid b, Monad m) => Fold a a' b b' -> StateT a m b
Retrieve a monoidal summary of all the referenced fields from the state
uses :: Monad m => FoldLike r a a' b b' -> (b -> r) -> StateT a m r Source #
uses :: (Monoid r, Monad m) => Fold a a' b b' -> (b -> r) -> StateT a m r
Retrieve all the referenced fields from the state and foldMap the results together with f :: b -> r
.
uses :: Monad m => Getter a a' b b' -> (b -> r) -> StateT a m r
Retrieve a field of the state and pass it through the function f :: b -> r
.
uses l f = f <$> use l
(%=) :: Monad m => ASetter a a b b' -> (b -> b') -> StateT a m () infix 4 Source #
Modify a field of the state.
(.=) :: Monad m => ASetter a a b b' -> b' -> StateT a m () infix 4 Source #
Set a field of the state.
(%%=) :: Monad m => LensLike (Writer c) a a b b' -> (b -> (c, b')) -> StateT a m c infix 4 Source #
(%%=) :: Monad m => Lens a a b b' -> (b -> (c, b')) -> StateT a m c
Modify a field of the state while returning another value.
(%%=) :: (Monad m, Monoid c) => Traversal a a b b' -> (b -> (c, b')) -> StateT a m c
Modify each field of the state and return the mconcat
of the other values.
(<~) :: Monad m => ASetter a a b b' -> StateT a m b' -> StateT a m () infixr 2 Source #
Set a field of the state using the result of executing a stateful command.
Compound Assignments
(<>=) :: (Monoid o, Monad m) => ASetter' a o -> o -> StateT a m () infixr 4 Source #
Monoidally append a value to all referenced fields of the state.
Strict Assignments
(%!=) :: Monad m => ASetter a a b b' -> (b -> b') -> StateT a m () infix 4 Source #
Strictly modify a field of the state.
Types
Re-exports
data Constant a (b :: k) :: forall k. * -> k -> * #
Constant functor.
Instances
Identity functor and monad. (a non-strict monad)
Since: base-4.8.0.0
Instances
data StateT s (m :: * -> *) a #
A state transformer monad parameterized by:
s
- The state.m
- The inner monad.
The return
function leaves the state unchanged, while >>=
uses
the final state of the first computation as the initial state of
the second.
Instances
MonadTrans (StateT s) | |
Defined in Control.Monad.Trans.State.Lazy | |
Monad m => Monad (StateT s m) | |
Functor m => Functor (StateT s m) | |
MonadFix m => MonadFix (StateT s m) | |
Defined in Control.Monad.Trans.State.Lazy | |
MonadFail m => MonadFail (StateT s m) | |
Defined in Control.Monad.Trans.State.Lazy | |
(Functor m, Monad m) => Applicative (StateT s m) | |
Defined in Control.Monad.Trans.State.Lazy | |
MonadIO m => MonadIO (StateT s m) | |
Defined in Control.Monad.Trans.State.Lazy | |
(Functor m, MonadPlus m) => Alternative (StateT s m) | |
MonadPlus m => MonadPlus (StateT s m) | |
class Semigroup a => Monoid a #
The class of monoids (types with an associative binary operation that has an identity). Instances should satisfy the following laws:
x
<>
mempty
= xmempty
<>
x = xx
(<>
(y<>
z) = (x<>
y)<>
zSemigroup
law)mconcat
=foldr
'(<>)'mempty
The method names refer to the monoid of lists under concatenation, but there are many other instances.
Some types can be viewed as a monoid in more than one way,
e.g. both addition and multiplication on numbers.
In such cases we often define newtype
s and make those instances
of Monoid
, e.g. Sum
and Product
.
NOTE: Semigroup
is a superclass of Monoid
since base-4.11.0.0.
Instances
Monoid Ordering | Since: base-2.1 |
Monoid () | Since: base-2.1 |
Monoid All | Since: base-2.1 |
Monoid Any | Since: base-2.1 |
Monoid IntSet | |
Monoid [a] | Since: base-2.1 |
Semigroup a => Monoid (Maybe a) | Lift a semigroup into Since 4.11.0: constraint on inner Since: base-2.1 |
Monoid a => Monoid (IO a) | Since: base-4.9.0.0 |
(Ord a, Bounded a) => Monoid (Min a) | Since: base-4.9.0.0 |
(Ord a, Bounded a) => Monoid (Max a) | Since: base-4.9.0.0 |
Monoid m => Monoid (WrappedMonoid m) | Since: base-4.9.0.0 |
Defined in Data.Semigroup mempty :: WrappedMonoid m # mappend :: WrappedMonoid m -> WrappedMonoid m -> WrappedMonoid m # mconcat :: [WrappedMonoid m] -> WrappedMonoid m # | |
Semigroup a => Monoid (Option a) | Since: base-4.9.0.0 |
Monoid a => Monoid (Identity a) | |
Monoid (First a) | Since: base-2.1 |
Monoid (Last a) | Since: base-2.1 |
Monoid a => Monoid (Dual a) | Since: base-2.1 |
Monoid (Endo a) | Since: base-2.1 |
Num a => Monoid (Sum a) | Since: base-2.1 |
Num a => Monoid (Product a) | Since: base-2.1 |
Monoid (IntMap a) | |
Ord a => Monoid (Set a) | |
Monoid (MergeSet a) | |
Monoid b => Monoid (a -> b) | Since: base-2.1 |
(Monoid a, Monoid b) => Monoid (a, b) | Since: base-2.1 |
Monoid (Proxy s) | Since: base-4.7.0.0 |
Ord k => Monoid (Map k v) | |
(Monoid a, Monoid b, Monoid c) => Monoid (a, b, c) | Since: base-2.1 |
Monoid a => Monoid (Const a b) | |
Alternative f => Monoid (Alt f a) | Since: base-4.8.0.0 |
Monoid a => Monoid (Constant a b) | |
(Monoid a, Monoid b, Monoid c, Monoid d) => Monoid (a, b, c, d) | Since: base-2.1 |
(Monoid a, Monoid b, Monoid c, Monoid d, Monoid e) => Monoid (a, b, c, d, e) | Since: base-2.1 |