bytes>ulid ( byte-array -- ulid )
Universally Unique Lexicographically Sortable Identifier

Prev:ulid>bytes ( ulid -- byte-array )
Next:normalize-ulid ( str -- str' )


Vocabulary
ulid

Inputs
byte-arraya byte-array


Outputs
ulida string


Word description
Convert a binary ULID to its string representation using the Crockford's base32 encoding. The byte-array must be exactly 16 bytes long, the resulting ulid string is always 26 characters long.

Errors
bytes>ulid-bad-length ( n -- * )


Definition