Copyright | Bryan O'Sullivan 2007-2015 |
---|---|
License | BSD3 |
Maintainer | bos@serpentine.com |
Stability | experimental |
Portability | unknown |
Safe Haskell | None |
Language | Haskell2010 |
Simple, efficient parser combinators, loosely based on the Parsec library.
Synopsis
- newtype Parser i a = Parser {}
- type family State i
- type Failure i t r = t -> Pos -> More -> [String] -> String -> IResult i r
- type Success i t a r = t -> Pos -> More -> a -> IResult i r
- newtype Pos = Pos {}
- data IResult i r
- data More
- (<>) :: Semigroup a => a -> a -> a
- class Monoid c => Chunk c where
- type ChunkElem c
- nullChunk :: c -> Bool
- pappendChunk :: State c -> c -> State c
- atBufferEnd :: c -> State c -> Pos
- bufferElemAt :: c -> Pos -> State c -> Maybe (ChunkElem c, Int)
- chunkElemToChar :: c -> ChunkElem c -> Char
Documentation
The core parser type. This is parameterised over the type i
of string being processed.
This type is an instance of the following classes:
Monad
, wherefail
throws an exception (i.e. fails) with an error message.Functor
andApplicative
, which follow the usual definitions.MonadPlus
, wheremzero
fails (with no error message) andmplus
executes the right-hand parser if the left-hand one fails. When the parser on the right executes, the input is reset to the same state as the parser on the left started with. (In other words, attoparsec is a backtracking parser that supports arbitrary lookahead.)Alternative
, which followsMonadPlus
.
Instances
Monad (Parser i) # | |
Functor (Parser i) # | |
MonadFail (Parser i) # | |
Defined in Data.Attoparsec.Internal.Types | |
a ~ Text => IsString (Parser a) # | |
Defined in Data.Attoparsec.Text.Internal fromString :: String -> Parser a # | |
a ~ ByteString => IsString (Parser a) # | |
Defined in Data.Attoparsec.ByteString.Char8 fromString :: String -> Parser a # | |
Applicative (Parser i) # | |
Alternative (Parser i) # | |
MonadPlus (Parser i) # | |
Semigroup (Parser i a) # | |
Monoid (Parser i a) # | |
Instances
type State ByteString # | |
Defined in Data.Attoparsec.Internal.Types | |
type State Text # | |
Defined in Data.Attoparsec.Internal.Types |
The result of a parse. This is parameterised over the type i
of string that was processed.
This type is an instance of Functor
, where fmap
transforms the
value in a Done
result.
Fail i [String] String | The parse failed. The |
Partial (i -> IResult i r) | Supply this continuation with more input so that the parser can resume. To indicate that no more input is available, pass an empty string to the continuation. Note: if you get a |
Done i r | The parse succeeded. The |
(<>) :: Semigroup a => a -> a -> a infixr 6 #
An associative operation.
>>>
[1,2,3] <> [4,5,6]
[1,2,3,4,5,6]
class Monoid c => Chunk c where #
A common interface for input chunks.
Test if the chunk is empty.
pappendChunk :: State c -> c -> State c #
Append chunk to a buffer.
atBufferEnd :: c -> State c -> Pos #
Position at the end of a buffer. The first argument is ignored.
bufferElemAt :: c -> Pos -> State c -> Maybe (ChunkElem c, Int) #
Return the buffer element at the given position along with its length.
chunkElemToChar :: c -> ChunkElem c -> Char #
Map an element to the corresponding character. The first argument is ignored.
Instances
Chunk ByteString # | |
Defined in Data.Attoparsec.Internal.Types type ChunkElem ByteString # nullChunk :: ByteString -> Bool # pappendChunk :: State ByteString -> ByteString -> State ByteString # atBufferEnd :: ByteString -> State ByteString -> Pos # bufferElemAt :: ByteString -> Pos -> State ByteString -> Maybe (ChunkElem ByteString, Int) # chunkElemToChar :: ByteString -> ChunkElem ByteString -> Char # | |
Chunk Text # | |
Defined in Data.Attoparsec.Internal.Types |