# File lib/geo_ruby/shp4r/dbf.rb, line 66
        def records
          seek_to_record(0)
          @records ||= Array.new(@record_count) do |i|
            if active_record?
              build_record
            else
              seek_to_record(i + 1)
              nil
            end
          end
        end