class Locomotive::Steam::Adapters::Memory::Order::Asc
Public Instance Methods
<=>(other)
click to toggle source
# File lib/locomotive/steam/adapters/memory/order.rb, line 54 def <=>(other) @obj && other.obj ? @obj <=> other.obj : @obj ? -1 : 1; end