Method: CSV#stat

Defined in:
lib/csv.rb

#stat(*args) ⇒ Object

Raises:

  • (NotImplementedError)


2073
2074
2075
2076
# File 'lib/csv.rb', line 2073

def stat(*args)
  raise NotImplementedError unless @io.respond_to?(:stat)
  @io.stat(*args)
end