Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Data.Monoid.Instances.Stateful
Description
This module defines the monoid transformer data type Stateful
.
> let s = setState [4] $ pure "data" :: Stateful [Int] String > s Stateful ("data",[4]) > factors s [Stateful ("d",[]),Stateful ("a",[]),Stateful ("t",[]),Stateful ("a",[]),Stateful ("",[4])]
Documentation
is a wrapper around the Stateful
a bMonoid
b
that carries the state a
along. The state type a
must be
a monoid as well if Stateful
is to be of any use. In the FactorialMonoid
and TextualMonoid
class instances, the
monoid b
has the priority and the state a
is left for the end.
Constructors
Stateful (b, a) |
Instances
Functor (Stateful a) Source # | |
Monoid a => Applicative (Stateful a) Source # | |
Defined in Data.Monoid.Instances.Stateful | |
(Eq b, Eq a) => Eq (Stateful a b) Source # | |
(Ord b, Ord a) => Ord (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful | |
(Show b, Show a) => Show (Stateful a b) Source # | |
(Monoid a, IsString b) => IsString (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful Methods fromString :: String -> Stateful a b | |
(Semigroup a, Semigroup b) => Semigroup (Stateful a b) Source # | |
(Monoid a, Monoid b) => Monoid (Stateful a b) Source # | |
(PositiveMonoid a, PositiveMonoid b) => PositiveMonoid (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful | |
(MonoidNull a, MonoidNull b) => MonoidNull (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful | |
(RightReductive a, RightReductive b) => RightReductive (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful | |
(LeftReductive a, LeftReductive b) => LeftReductive (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful | |
(RightGCDMonoid a, RightGCDMonoid b) => RightGCDMonoid (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful | |
(LeftGCDMonoid a, LeftGCDMonoid b) => LeftGCDMonoid (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful | |
(FactorialMonoid a, FactorialMonoid b, StableFactorial a, StableFactorial b) => StableFactorial (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful | |
(FactorialMonoid a, FactorialMonoid b) => Factorial (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful Methods factors :: Stateful a b -> [Stateful a b] Source # primePrefix :: Stateful a b -> Stateful a b Source # primeSuffix :: Stateful a b -> Stateful a b Source # foldl :: (a0 -> Stateful a b -> a0) -> a0 -> Stateful a b -> a0 Source # foldl' :: (a0 -> Stateful a b -> a0) -> a0 -> Stateful a b -> a0 Source # foldr :: (Stateful a b -> a0 -> a0) -> a0 -> Stateful a b -> a0 Source # length :: Stateful a b -> Int Source # foldMap :: Monoid n => (Stateful a b -> n) -> Stateful a b -> n Source # | |
(FactorialMonoid a, FactorialMonoid b) => FactorialMonoid (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful Methods splitPrimePrefix :: Stateful a b -> Maybe (Stateful a b, Stateful a b) Source # splitPrimeSuffix :: Stateful a b -> Maybe (Stateful a b, Stateful a b) Source # inits :: Stateful a b -> [Stateful a b] Source # tails :: Stateful a b -> [Stateful a b] Source # span :: (Stateful a b -> Bool) -> Stateful a b -> (Stateful a b, Stateful a b) Source # break :: (Stateful a b -> Bool) -> Stateful a b -> (Stateful a b, Stateful a b) Source # split :: (Stateful a b -> Bool) -> Stateful a b -> [Stateful a b] Source # takeWhile :: (Stateful a b -> Bool) -> Stateful a b -> Stateful a b Source # dropWhile :: (Stateful a b -> Bool) -> Stateful a b -> Stateful a b Source # spanMaybe :: s -> (s -> Stateful a b -> Maybe s) -> Stateful a b -> (Stateful a b, Stateful a b, s) Source # spanMaybe' :: s -> (s -> Stateful a b -> Maybe s) -> Stateful a b -> (Stateful a b, Stateful a b, s) Source # splitAt :: Int -> Stateful a b -> (Stateful a b, Stateful a b) Source # | |
(LeftGCDMonoid a, FactorialMonoid a, TextualMonoid b) => TextualMonoid (Stateful a b) Source # | |
Defined in Data.Monoid.Instances.Stateful Methods fromText :: Text -> Stateful a b Source # singleton :: Char -> Stateful a b Source # splitCharacterPrefix :: Stateful a b -> Maybe (Char, Stateful a b) Source # characterPrefix :: Stateful a b -> Maybe Char Source # map :: (Char -> Char) -> Stateful a b -> Stateful a b Source # concatMap :: (Char -> Stateful a b) -> Stateful a b -> Stateful a b Source # toString :: (Stateful a b -> String) -> Stateful a b -> String Source # toText :: (Stateful a b -> Text) -> Stateful a b -> Text Source # any :: (Char -> Bool) -> Stateful a b -> Bool Source # all :: (Char -> Bool) -> Stateful a b -> Bool Source # foldl :: (a0 -> Stateful a b -> a0) -> (a0 -> Char -> a0) -> a0 -> Stateful a b -> a0 Source # foldl' :: (a0 -> Stateful a b -> a0) -> (a0 -> Char -> a0) -> a0 -> Stateful a b -> a0 Source # foldr :: (Stateful a b -> a0 -> a0) -> (Char -> a0 -> a0) -> a0 -> Stateful a b -> a0 Source # scanl :: (Char -> Char -> Char) -> Char -> Stateful a b -> Stateful a b Source # scanl1 :: (Char -> Char -> Char) -> Stateful a b -> Stateful a b Source # scanr :: (Char -> Char -> Char) -> Char -> Stateful a b -> Stateful a b Source # scanr1 :: (Char -> Char -> Char) -> Stateful a b -> Stateful a b Source # mapAccumL :: (a0 -> Char -> (a0, Char)) -> a0 -> Stateful a b -> (a0, Stateful a b) Source # mapAccumR :: (a0 -> Char -> (a0, Char)) -> a0 -> Stateful a b -> (a0, Stateful a b) Source # takeWhile :: (Stateful a b -> Bool) -> (Char -> Bool) -> Stateful a b -> Stateful a b Source # dropWhile :: (Stateful a b -> Bool) -> (Char -> Bool) -> Stateful a b -> Stateful a b Source # break :: (Stateful a b -> Bool) -> (Char -> Bool) -> Stateful a b -> (Stateful a b, Stateful a b) Source # span :: (Stateful a b -> Bool) -> (Char -> Bool) -> Stateful a b -> (Stateful a b, Stateful a b) Source # spanMaybe :: s -> (s -> Stateful a b -> Maybe s) -> (s -> Char -> Maybe s) -> Stateful a b -> (Stateful a b, Stateful a b, s) Source # spanMaybe' :: s -> (s -> Stateful a b -> Maybe s) -> (s -> Char -> Maybe s) -> Stateful a b -> (Stateful a b, Stateful a b, s) Source # split :: (Char -> Bool) -> Stateful a b -> [Stateful a b] Source # find :: (Char -> Bool) -> Stateful a b -> Maybe Char Source # elem :: Char -> Stateful a b -> Bool Source # foldl_ :: (a0 -> Char -> a0) -> a0 -> Stateful a b -> a0 Source # foldl_' :: (a0 -> Char -> a0) -> a0 -> Stateful a b -> a0 Source # foldr_ :: (Char -> a0 -> a0) -> a0 -> Stateful a b -> a0 Source # takeWhile_ :: Bool -> (Char -> Bool) -> Stateful a b -> Stateful a b Source # dropWhile_ :: Bool -> (Char -> Bool) -> Stateful a b -> Stateful a b Source # break_ :: Bool -> (Char -> Bool) -> Stateful a b -> (Stateful a b, Stateful a b) Source # span_ :: Bool -> (Char -> Bool) -> Stateful a b -> (Stateful a b, Stateful a b) Source # spanMaybe_ :: s -> (s -> Char -> Maybe s) -> Stateful a b -> (Stateful a b, Stateful a b, s) Source # spanMaybe_' :: s -> (s -> Char -> Maybe s) -> Stateful a b -> (Stateful a b, Stateful a b, s) Source # |