Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 213 Bytes

faq.md

File metadata and controls

11 lines (8 loc) · 213 Bytes

Difference between Parser.then() and Parser.thenRight()

p1.thenRight(p2) === p1.drop().then(p2)

Difference between Parser.then() and Parser.thenLeft()

p1.thenLeft(p2) === p1.then(p2.drop())