class ExactCover::ColumnObject

a column header

Attributes

name[R]
size[RW]

Public Class Methods

new(size, name) click to toggle source
Calls superclass method
# File lib/exact_cover/column_object.rb, line 7
def initialize(size, name)
  super(nil)

  @size = size
  @name = name
end