Packages

package ulid

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. final case class ULID(ulid: String) extends Ordered[ULID] with Product with Serializable

    ULID string, consisting of 26 characters.

Value Members

  1. object CrockfordBase32

    Base 32 encoding by Douglas Crockford: https://www.crockford.com/base32.html

  2. object ULID extends Serializable

    ULID generator implementation based on https://github.com/petitviolet/ulid4s

    ULID generator implementation based on https://github.com/petitviolet/ulid4s

    ULID has 128 bit value:

    -- Unix timestamp milliseconds (48-bit) ----

    ----- random value (80 bits) ------

    The string representation of ULID uses 26 characters in Crockford Base 32 representation, each character of which represents 5-bit value (0-31).

  3. object compat

Ungrouped