We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ac8ea9 commit 7930207Copy full SHA for 7930207
uuid.go
@@ -161,6 +161,27 @@ func TimestampFromV7(u UUID) (Timestamp, error) {
161
// zero.
162
var Nil = UUID{}
163
164
+// Max is the maximum UUID, as specified in a draft of RFC-4122, that has all 128 bits
165
+// set to one. This feature is subject to removal if it is removed from the final draft of the RFC.
166
+var Max = UUID{
167
+ 0xFF,
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
+}
184
+
185
// Predefined namespace UUIDs.
186
var (
187
NamespaceDNS = Must(FromString("6ba7b810-9dad-11d1-80b4-00c04fd430c8"))
0 commit comments