Chomp one character if it passes the test.
const chompUpper: P.Parser<P.Unit> = P.chompIf(Helpers.isUpper)
So this can chomp a character like T and produces a () value.
T
()
Chomp one character if it passes the test.
Remarks
Example
So this can chomp a character like
T
and produces a()
value.