class Symbol

Core Symbol class.

Public Instance Methods

<=>(b) click to toggle source

Comparison operator based on the one in the String class.

# File lib/glyph/system_extensions.rb, line 4
def <=>(b)
        self.to_s <=> b.to_s
end