Class: HtmlToMarkdown::TableGrid
- Inherits:
-
Object
- Object
- HtmlToMarkdown::TableGrid
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#cells ⇒ Array[GridCell]?
Returns the value of attribute cells.
-
#cols ⇒ Integer?
Returns the value of attribute cols.
-
#rows ⇒ Integer?
Returns the value of attribute rows.
Instance Method Summary collapse
-
#initialize ⇒ TableGrid
constructor
A new instance of TableGrid.
Constructor Details
#initialize ⇒ TableGrid
Returns a new instance of TableGrid.
252 |
# File 'sig/types.rbs', line 252
def initialize: (?rows: Integer, ?cols: Integer, ?cells: Array[GridCell]) -> void
|
Instance Attribute Details
#cells ⇒ Array[GridCell]?
Returns the value of attribute cells.
250 251 252 |
# File 'sig/types.rbs', line 250 def cells @cells end |
#cols ⇒ Integer?
Returns the value of attribute cols.
249 250 251 |
# File 'sig/types.rbs', line 249 def cols @cols end |
#rows ⇒ Integer?
Returns the value of attribute rows.
248 249 250 |
# File 'sig/types.rbs', line 248 def rows @rows end |