sequence.rb

Path: lib/parslet/atoms/sequence.rb
Last Update: Fri Jul 15 14:35:39 -0400 2016

A sequence of parslets, matched from left to right. Denoted by ’>>’

Example:

  str('a') >> str('b')  # matches 'a', then 'b'

[Validate]