parsec-3.0.0: Monadic parser combinators

Portabilityportable
Stabilityprovisional
Maintainerderek.a.elkins@gmail.com

Text.ParserCombinators.Parsec.Expr

Description

Parsec compatibility module

Synopsis

Documentation

data Assoc Source

This data type specifies the associativity of operators: left, right or none.

data Operator tok st a Source

Constructors

Infix (GenParser tok st (a -> a -> a)) Assoc 
Prefix (GenParser tok st (a -> a)) 

type OperatorTable tok st a = [[Operator tok st a]]Source

buildExpressionParser :: OperatorTable tok st a -> GenParser tok st a -> GenParser tok st aSource