class CSV

Public Instance Methods

count() click to toggle source
Calls superclass method
# File lib/table_utils/progress.rb, line 46
def count
  oldpos = tell if respond_to?(:tell)
  super
ensure
  seek oldpos if respond_to?(:seek)
end