Class: Html::Thead

Inherits:
Tag
  • Object
show all
Defined in:
lib/html/thead.rb

Instance Method Summary collapse

Methods inherited from Tag

#attributes=, #to_s

Constructor Details

#initialize(row = Row.new(Array.new(0)), **attrs) ⇒ Thead



5
6
7
8
9
# File 'lib/html/thead.rb', line 5

def initialize(row = Row.new(Array.new(0)), **attrs)
  super(**attrs)

  @row = row
end

Instance Method Details

#empty?Boolean



11
12
13
# File 'lib/html/thead.rb', line 11

def empty?
  @row.nil? || @row.cols.empty?
end