# File rparsec/monad.rb, line 12
  def initMonad(m, v)
    raise ArgumentError, 'monad cannot be nil' if m.nil?
    @monad = m;
    @this = v;
  end