# File lib/plucky/extensions/symbol.rb, line 69
  def <=>(other)
    if field == other.field
      operator <=> other.operator
    else
      field.to_s <=> other.field.to_s
    end
  end