constaparser-0.1.0.0: Parse ByteStrings of a constant length.

Safe HaskellNone
LanguageHaskell2010

Data.Constaparser

Documentation

data ConstaparserST s e a Source #

Instances

Functor (ConstaparserST s e) Source # 

Methods

fmap :: (a -> b) -> ConstaparserST s e a -> ConstaparserST s e b #

(<$) :: a -> ConstaparserST s e b -> ConstaparserST s e a #

Applicative (ConstaparserST s e) Source # 

Methods

pure :: a -> ConstaparserST s e a #

(<*>) :: ConstaparserST s e (a -> b) -> ConstaparserST s e a -> ConstaparserST s e b #

liftA2 :: (a -> b -> c) -> ConstaparserST s e a -> ConstaparserST s e b -> ConstaparserST s e c #

(*>) :: ConstaparserST s e a -> ConstaparserST s e b -> ConstaparserST s e b #

(<*) :: ConstaparserST s e a -> ConstaparserST s e b -> ConstaparserST s e a #