# File lib/faster_csv.rb, line 1046
    def self.foreach(path, options = Hash.new, &block)
      open(path, "rb", options) do |csv|
        csv.each(&block)
      end
    end