Method: TableGen#separator

Defined in:
lib/tablegen.rb

#separator(char = '=') ⇒ Object

Add a separator to the table.

Parameters:

  • char (String) (defaults to: '=')

    the character to repeat



122
123
124
# File 'lib/tablegen.rb', line 122

def separator(char = '=')
  @lines << Line.new(:separator, char)
end