cabal-gild-1.3.1.0: Formats package descriptions.
Safe HaskellSafe-Inferred
LanguageHaskell2010

CabalGild.Unstable.Type.SomeParsecParser

Synopsis

Documentation

data SomeParsecParser Source #

This type bundles up a parser and a pretty printer for some type. Typically they will just be monomorphic versions of parsec and prettyVersioned.

Constructors

forall a. SomeParsecParser 

Fields

list :: forall s b a. (Parsec (List s b a), Pretty (List s b a)) => SomeParsecParser Source #

Creates a new parser for the given List of values.

set :: forall s b a. (Parsec (Set s b a), Pretty (Set s b a)) => SomeParsecParser Source #

Creates a new parser for the given Set of values.