# File lib/facets/more/tuple.rb, line 171 def <=>( other ) other = other.to_t [size, other.size].max.times do |i| c = self[i] <=> other[i] return c if c != 0 end 0 end