%then% {Ramble} | R Documentation |
%then%
is the infix operator for the then combinator.%then%
is the infix operator for the then combinator.
p1 %then% p2
p1 |
the first parser |
p2 |
the second parser |
recognises anything that p1
and p2
would if placed in succession.
(item() %then% succeed("123")) ("abc")