# File lib/core/facets/comparable/cmp.rb, line 31
  def cmp(other)
    return -1 if length < other.length
    return 1 if length > other.length
    self <=> other  # alphabetic compare
  end