| Safe Haskell | Safe-Inferred |
|---|---|
| Language | GHC2021 |
Symparsec
Contents
Synopsis
- type Parser s r = (ParserChSym s r, ParserEndSym s r, s)
- type family Run p sym where ...
- module Symparsec.Parsers
Base definitions
type Parser s r = (ParserChSym s r, ParserEndSym s r, s) Source #
type family Run p sym where ... Source #
Run the given parser on the given Symbol.
Equations
| Run '(pCh, pEnd, s) sym = MapLeftPrettyERun (RunStart pCh pEnd s (UnconsSymbol sym)) |
Parsers
module Symparsec.Parsers