A sequence of parslets, matched from left to right. Denoted by '>>'
Example:
str('a') >> str('b') # matches 'a', then 'b'
# File lib/parslet/atoms/sequence.rb, line 18 def >>(parslet) self.class.new(* @parslets+[parslet]) end
Call back visitors visit_sequence method. See parslet/export for an example.
# File lib/parslet/atoms/visitor.rb, line 42 def accept(visitor) visitor.visit_sequence(parslets) end
Generated with the Darkfish Rdoc Generator 2.