Method: CSV#stat

Defined in:
lib/csv.rb

#stat(*args) ⇒ Object

Raises:

  • (NotImplementedError)


2283
2284
2285
2286
# File 'lib/csv.rb', line 2283

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