Method: RMatrix::PrintTable#initialize

Defined in:
lib/rmatrix/printing/print_table.rb

#initializePrintTable

Returns a new instance of PrintTable.



4
5
6
7
8
9
# File 'lib/rmatrix/printing/print_table.rb', line 4

def initialize
  self.row_count = self.column_count = 0
  self.cells = {}
  self.column_justifications = {}
  self.separators = Hash.new(', ')
end