uu-parsinglib-2.7.0.2: Fast, online, error-correcting, monadic, applicative, merging, permuting, idiomatic parser combinators.

Text.ParserCombinators.UU.Idioms

Synopsis

Documentation

data String' Source

Constructors

String' 

Fields

fromStr :: String
 

data Ii Source

The Ii is to be pronounced as stop

Constructors

Ii 

Instances

Idiomatic st x (Ii -> P st x) 

iI :: Idiomatic i (a -> a) g => gSource

The function iI is to be pronounced as start

class Idiomatic st f g | g -> f st whereSource

Methods

idiomatic :: P st f -> gSource

Instances

Idiomatic st x (Ii -> P st x) 
Idiomatic st f g => Idiomatic st ((a -> b) -> f) ((a -> b) -> g) 
Idiomatic st f g => Idiomatic st (a -> f) (P st a -> g) 
(Idiomatic (Str Char state loc) f g, IsLocationUpdatedBy loc Char, ListLike state Char) => Idiomatic (Str Char state loc) f (Char -> g) 
(Idiomatic (Str Char state loc) f g, IsLocationUpdatedBy loc Char, ListLike state Char) => Idiomatic (Str Char state loc) f (String -> g)