# File rparsec/parsers.rb, line 515
  def _parse ctxt
    for i in (0...@least)
      return false unless @parser._parse ctxt
    end
    while(true)
      ind = ctxt.index
      if @parser._parse ctxt
        return true if ind==ctxt.index # infinite loop
        next
      end
      return ind==ctxt.index
    end
  end