aboutsummaryrefslogtreecommitdiff
path: root/lib/uuidv7/uuidv7_example_test.go
AgeCommit message (Collapse)Author
9 dayslib/uuidv7: remove the v7 suffix from typeShulhan
Adding suffix version to the type seems not right (and also mouthful to read) since the package already defines the version of UUID.
10 dayslib/uuidv7: add method IsEqualShulhan
This is to simplify checking for equality in if-condition.
2026-03-26lib/uuidv7: implement Equal method for [lib/reflect.Equaler]Shulhan
The Equal method returns nil if both receiver and parameter has the same value. This method implements [lib/reflect.Equaler] interface.
2026-03-10lib/uuidv7: new package that implements UUID version 7Shulhan
The uuidv7 package provides type UUIDv7 as the container for UUID version 7 that satisfy the [database/sql], [encoding/gob], and [encoding/json]. The implementation follow RFC 9562.