Module: Sheetah::Sheet
Defined Under Namespace
Modules: ClassMethods
Classes: Cell, Error, Header, Row
Constant Summary
collapse
- COL_CONVERTER =
ColConverter.new.freeze
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.col2int ⇒ Object
13
14
15
|
# File 'lib/sheetah/sheet.rb', line 13
def self.col2int(...)
COL_CONVERTER.col2int(...)
end
|
.int2col ⇒ Object
17
18
19
|
# File 'lib/sheetah/sheet.rb', line 17
def self.int2col(...)
COL_CONVERTER.int2col(...)
end
|
Instance Method Details
#close ⇒ Object
99
100
101
|
# File 'lib/sheetah/sheet.rb', line 99
def close
raise NoMethodError, "You must implement #{self.class}#close => nil"
end
|
91
92
93
|
# File 'lib/sheetah/sheet.rb', line 91
def
raise NoMethodError, "You must implement #{self.class}#each_header => self"
end
|
#each_row ⇒ Object
95
96
97
|
# File 'lib/sheetah/sheet.rb', line 95
def each_row
raise NoMethodError, "You must implement #{self.class}#each_row => self"
end
|