Source File
uuid.go
Belonging Package
github.com/lib/pq
package pq
import (
)
func ( []byte) ([]byte, error) {
if len() != 16 {
return nil, fmt.Errorf("pq: unable to decode uuid; bad length: %d", len())
}
:= make([]byte, 36)
[8], [13], [18], [23] = '-', '-', '-', '-'
hex.Encode([0:], [0:4])
hex.Encode([9:], [4:6])
hex.Encode([14:], [6:8])
hex.Encode([19:], [8:10])
hex.Encode([24:], [10:16])
return , nil
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |