MCPcopy Create free account
hub / github.com/auxten/postgresql-parser / String

Method String

pkg/util/uuid/uuid.go:137–141  ·  view source on GitHub ↗

String returns a canonical RFC-4122 string representation of the UUID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx.

()

Source from the content-addressed store, hash-verified

135// String returns a canonical RFC-4122 string representation of the UUID:
136// xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx.
137func (u UUID) String() string {
138 buf := make([]byte, 36)
139 u.StringBytes(buf)
140 return string(buf)
141}
142
143// StringBytes writes the result of String directly into a buffer, which must
144// have a length of at least 36.

Callers 5

PrettyPrintValueEncodedFunction · 0.95
ValueMethod · 0.95
ShortMethod · 0.95
MarshalJSONMethod · 0.95
MarshalTextMethod · 0.95

Calls 1

StringBytesMethod · 0.95

Tested by

no test coverage detected