var encoding/json.hex
13 uses
encoding/json (current package)
encode.go#L204: dst.WriteByte(hex[c>>4])
encode.go#L205: dst.WriteByte(hex[c&0xF])
encode.go#L214: dst.WriteByte(hex[src[i+2]&0xF])
encode.go#L284: var hex = "0123456789abcdef"
encode.go#L1058: e.WriteByte(hex[b>>4])
encode.go#L1059: e.WriteByte(hex[b&0xF])
encode.go#L1087: e.WriteByte(hex[c&0xF])
encode.go#L1130: e.WriteByte(hex[b>>4])
encode.go#L1131: e.WriteByte(hex[b&0xF])
encode.go#L1159: e.WriteByte(hex[c&0xF])
indent.go#L28: dst.WriteByte(hex[c>>4])
indent.go#L29: dst.WriteByte(hex[c&0xF])
indent.go#L38: dst.WriteByte(hex[src[i+2]&0xF])
![]() |
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. |