class Integer

Public Instance Methods

to_base32h() click to toggle source

Encodes the integer to its Base32H numeric representation.

@return [String] the integer's Base32H representation

# File lib/base32h.rb, line 190
def to_base32h
  Base32H.encode(self)
end