Method: RDoc::Markup::Table#==

Defined in:
lib/rdoc/markup/table.rb

#==(other) ⇒ Object

:stopdoc:



21
22
23
24
25
26
# File 'lib/rdoc/markup/table.rb', line 21

def == other
  self.class == other.class and
    @header == other.header and
    @align == other.align and
    @body == other.body
end