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

Symparsec.Parser.Then.VoidRight

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

Documentation

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

Sequence two parsers, running left then right, and discard the return value of the right parser.

Consider using :*>: instead, which is simpler and potentially faster since we parse left-to-right.

Equations

'(plCh, plEnd, sl) :<*: '(prCh, prEnd, sr) = '(ThenVRChSym plCh prCh sr, ThenVREndSym prEnd, Left sl)