Unique Lexicographically Sortable Identifier ULID.
Unlike ararslan/ULID.jl, which generates ULIDs as strings, this implementation stores them as compact UInt128 binary values.
import Pkg
Pkg.add("https://github.com/DataLabHell/ULID.jl")using ULID
# generate time sortable id
u = ulid() # ULID("01K8X9KNDDYVSTF4XBE6A250RB")
# parse binary representation of ULID from string
parse(Ulid, "01K8X9KNDDYVSTF4XBE6A250RB")This plugin is incubating. APIs and defaults may change.