gouuid

repository·master·Indexed 19 days ago

https://github.com/nu7hatch/gouuid

A pure Go implementation of UUIDs following the RFC 4122 specification. It provides immutable structs and support for generating version 3, 4, and 5 UUIDs via NewV3(), NewV4(), and NewV5(), as well as a Parse() function to convert string representations into UUID structs.

Tokens
137
Snippets
1
Records
2
Agent score
15%

What's inside gouuid

  1. Generate and parse UUIDs with gouuid

    master

    The gouuid package provides immutable UUID structs and functions to generate versions 3, 4, and 5 UUIDs as specified in RFC 4122.

    Available functions include:

    • NewV3(): Generates a version 3 UUID.
    • NewV4(): Generates a version 4 UUID.
    • NewV5(): Generates a version 5 UUID.
    • Parse(): Parses a string representation into a UUID struct.