class OrderedRow
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.
Public Class Methods
new(my_array, index)
click to toggle source
Creates a new OrderedRow
. Callers must specify the index of the row element which will be used for order comparisons.
Attributes¶ ↑
my_array
-
An array representing a row from
Table
index
-
A Fixnum value which represents the comparison value
# File lib/tablestakes.rb, line 722 def initialize(my_array, index) @data = my_array @sort_index = index end
Public Instance Methods
<=>(other)
click to toggle source