uuid icon indicating copy to clipboard operation
uuid copied to clipboard

Go package for UUIDs based on RFC 4122 and DCE 1.1: Authentication and Security Services.

Results 67 uuid issues
Sort by recently updated
recently updated
newest added

Updates the README to fix the link to the RFC. Fixes #92.

Currently the UUID.String() method does not return an empty string, but the documentation says so.

It would be nice to have a reference implementation for UUID v8 as defined here: https://www.ietf.org/id/draft-peabody-dispatch-new-uuid-format-03.html

Hi! I noticed there is a uuid.Nil for UUID v1 but no uuid.Nil (for example uuid.Nil4) for UUID v4 could be useful adding this method to the library? (I could...

Does an "Equals(uuid1,uuid2)" method actually exists? It's not so fast comparing uuid's by parsing two values in string and then comparing then by '=='.

Its more convenient to copy the Installation command with one click

RUN go install github.com/google/[email protected] or RUN go install github.com/google/uuid running these command but getting such error, RUN go install github.com/google/[email protected]: #10 0.943 go: downloading github.com/google/uuid v1.3.0 #10 2.980 package github.com/google/uuid...

Is it right that `MarshalText()` function, if the input is not valid, returns the same output (`[]byte("null")`) as `MarshalJSON()` function? https://github.com/google/uuid/blob/44b5fee7c49cf3bcdf723f106b36d56ef13ccc88/null.go#L85 Wouldn't it be better if it returned a`[]byte{}`? Thank...

In order to allow `uuid.UUID` to work with the standard sql package to represent a UUID value that can be NULL in the database I suggest to implement a `NullUUID`...

Hi, Thank you for the package! I'm struggling with the following problem due installation instruction from README. Right after the command `go get github.com/google/uuid` I'm getting the following error: ```bash...