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 #
any :: (Char -> Bool) -> Stateful a b -> Bool Source #
all :: (Char -> Bool) -> Stateful a b -> Bool Source #
foldl :: (a -> Stateful a b -> a) -> (a -> Char -> a) -> a -> Stateful a b -> a Source #
foldl' :: (a -> Stateful a b -> a) -> (a -> Char -> a) -> a -> Stateful a b -> a Source #
foldr :: (Stateful a b -> a -> a) -> (Char -> a -> a) -> a -> Stateful a b -> a 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 :: (a -> Char -> (a, Char)) -> a -> Stateful a b -> (a, Stateful a b) Source #
mapAccumR :: (a -> Char -> (a, Char)) -> a -> Stateful a b -> (a, 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_ :: (a -> Char -> a) -> a -> Stateful a b -> a Source #
foldl_' :: (a -> Char -> a) -> a -> Stateful a b -> a Source #
foldr_ :: (Char -> a -> a) -> a -> Stateful a b -> a 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 #