-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Parse ByteStrings of a constant length. -- -- Parse constant-length ByteStrings, which allows for some performance -- optimisations. You can also convert from a Constaparser to a -- Parser from Attoparsec. @package constaparser @version 0.1.0.0 module Data.Constaparser data Constaparser a data ConstaparserST s e a constaparserToAttoparsec :: Constaparser a -> Parser a withMutableVector :: Int -> (forall s. ConstaparserST s (MVector s a) ()) -> Constaparser (Vector a) cpInt :: String -> Int -> Constaparser Int dropTrailingSpace :: ByteString -> ByteString