ADDED:
* uuidx
FIXED:
* sprigx docs consistency
This commit is contained in:
brent saner
2026-02-11 10:21:29 -05:00
parent 67c7faf449
commit 1eea0c2672
18 changed files with 4446 additions and 1659 deletions

22
uuidx/funcs_rfcgen.go Normal file
View File

@@ -0,0 +1,22 @@
package uuidx
// String conforms an [RfcGen] to a [fmt.Stringer] interface.
func (g *RfcGen) String() (s string) {
if g == nil {
s = "UNSPECIFIED_NIL"
}
switch *g {
case RfcNone:
s = "INVALID"
case Rfc4122:
s = "RFC 4122"
case Rfc9562:
s = "RFC 9562"
default:
s = "UNKNOWN"
}
return
}