Method: MoreMath::Functions.stringify_number
- Defined in:
- lib/more_math/functions.rb
.stringify_number(number, alphabet = 'a'..'z') ⇒ Object
Computes the string in the alphabet from a Gödel number number and returns it. This is the inverse function of numberify_string.
207 208 209 |
# File 'lib/more_math/functions.rb', line 207 def stringify_number(number, alphabet = 'a'..'z') NumberifyStringFunction.stringify_number(number, alphabet) end |