symparsec-0.4.0: Type level string parser combinators
Safe HaskellSafe-Inferred
LanguageGHC2021

Symparsec.Parser.Then

Synopsis
  • type family pl :<*>: pr where ...

Documentation

type family pl :<*>: pr where ... infixl 4 Source #

Sequence two parsers, running left then right, and return both results.

Equations

'(plCh, plEnd, sl) :<*>: '(prCh, prEnd, sr) = '(ThenChSym plCh prCh sr, ThenEndSym prEnd, Left sl)