Returns unparsed version of the generated UUID sequence.
()
| 169 | |
| 170 | // Returns unparsed version of the generated UUID sequence. |
| 171 | func (u *UUID) String() string { |
| 172 | return fmt.Sprintf("%x-%x-%x-%x-%x", u[0:4], u[4:6], u[6:8], u[8:10], u[10:]) |
| 173 | } |
no outgoing calls