Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell98 |
This module contains the additional data types, instance definitions and functions to run parsers in an interleaved way. If all the interleaved parsers recognise a single connected piece of the input text this incorporates the permutation parsers. For some examples see the module Text.ParserCombinators.UU.Demo.MergeAndPermute.
- class Splittable f where
- getNonPure :: f a -> Maybe (f a)
- getPure :: f a -> Maybe a
- data Gram f a = Gram [Alt f a] (Maybe a)
- data Alt f a
- mkG :: (Splittable f, Functor f) => f a -> Gram f a
- mkP :: (Monad f, Applicative f, Alternative f) => Gram f a -> f a
- (<<||>) :: Functor f => Gram f (b -> a) -> Gram f b -> Gram f a
- (<||>) :: Functor f => Gram f (a1 -> a) -> Gram f a1 -> Gram f a
- sepBy :: (Monad f, Applicative f, Alternative f) => Gram f a -> f b -> f a
- gmList :: Functor f => Gram f a -> Gram f [a]
- module Control.Applicative
- module Data.Monoid
Classes
class Splittable f where Source
Types
Since we want to get access to the individual parsers which recognise a consecutive
piece of the input text we define a new data type, which lifts the underlying parsers
to the grammatical level, so they can be transformed, manipulated, and run in a piecewise way.
Gram
is defined in such a way that we can always access the first parsers to be ran from such a structure.
We require that all the Alt
s do not recognise the empty string.
These should be covered by the Maybe
in the Gram
constructor.
Functor f => Alternative (Gram f) | |
Functor f => Monad (Gram f) | |
Functor f => Functor (Gram f) | We define instances for the data type |
Functor f => Applicative (Gram f) | The left hand side operand is gradually transformed so we get access to its first component |
Show a => Show (Gram f a) | |
Functor f => Monoid (Gram f (r -> r)) |
Functions
mkG :: (Splittable f, Functor f) => f a -> Gram f a Source
The function mkGram
splits a simple parser into the possibly empty part and the non-empty part.
The non-empty part recognises a consecutive part of the input.
Here we use the functions getOneP
and getZeroP
which are provided in the uu-parsinglib package,
but they could easily be provided by other packages too.
mkP :: (Monad f, Applicative f, Alternative f) => Gram f a -> f a Source
mkParser
converts a Gram
mar back into a parser, which can subsequenly be run.
sepBy :: (Monad f, Applicative f, Alternative f) => Gram f a -> f b -> f a Source
gmList :: Functor f => Gram f a -> Gram f [a] Source
Run a sufficient number of p
's in a merged fashion, but no more than necessary!!
Modules
module Control.Applicative
module Data.Monoid