module MoreMath::StringNumeral::Functions

def StringNumeral(other, alphabet = 'a'..'z')

def StringNumeral(other, alphabet = 'a'..'z')
  ::MoreMath::StringNumeral.from(other, alphabet)
end

def to_sn(alphabet = 'a'..'z')

def to_sn(alphabet = 'a'..'z')
  StringNumeral === self ? self : StringNumeral.from(self, alphabet)
end