This class functions as a temporary representation of a row. The OrderedRow contains information about which column it should be sorted on, so that Comparable can be implemented.
Creates a new OrderedRow. Callers must specify the index of the row element which will be used for order comparisons.
my_array
An array representing a row from Table
index
A Fixnum value which represents the comparison value
# File lib/tablestakes.rb, line 635 def initialize(my_array, index) @data = my_array @sort_index = index end