class MoreMath::StringNumeral

def eql?(other)

def eql?(other)
  if other.respond_to?(:to_int)
    to_int == other.to_int
  elsif other.respond_to?(:to_str)
    to_str == other.to_str
  end
end