class Nodo

Public Instance Methods

<=>(other) click to toggle source
# File linkedlist.rb, line 5
def <=>(other)
        value <=> other.value
end