0.2
-
Change the semantics of
and
chains: when there's only one non-skipped operandParser<T>
, the whole chain is now typed asParser<T>
, notParser<Tuple1<T>>
-
Add operator equivalents:
a * b
fora and b
, and-a
forskip(a)
.
Change the semantics of and
chains: when there's only one non-skipped operand Parser<T>
, the whole chain is now typed as Parser<T>
, not Parser<Tuple1<T>>
Add operator equivalents: a * b
for a and b
, and -a
for skip(a)
.