Class: Html::Tbody
Instance Method Summary collapse
- #empty? ⇒ Boolean
-
#initialize(rows = Row.new(Array.new(0)), **attrs) ⇒ Tbody
constructor
A new instance of Tbody.
Methods inherited from Tag
Constructor Details
#initialize(rows = Row.new(Array.new(0)), **attrs) ⇒ Tbody
4 5 6 7 8 |
# File 'lib/html/tbody.rb', line 4 def initialize(rows = Row.new(Array.new(0)), **attrs) super(**attrs) @rows = rows end |
Instance Method Details
#empty? ⇒ Boolean
10 11 12 |
# File 'lib/html/tbody.rb', line 10 def empty? @rows.nil? || @rows.empty? end |