class String

Public Instance Methods

<=>(other) click to toggle source
# File lib/sycl.rb, line 725
def <=>(other)
  if other.is_a?(Sycl::Hash)
    -1 * (other <=> self)
  else
    self.__send__(:original_comparator, other)
  end
end
Also aliased as: original_comparator
original_comparator(other)
Alias for: <=>