class ParserCombinator::Ok
Attributes
parsed[R]
rest[R]
Public Class Methods
new(parsed, rest)
click to toggle source
# File lib/parser_combinator.rb, line 8 def initialize(parsed, rest) @parsed, @rest = parsed, rest end