const strconv.lowerhex
8 uses
strconv (current package)
ftoa.go#L517: hex := lowerhex
quote.go#L15: lowerhex = "0123456789abcdef"
quote.go#L44: buf = append(buf, lowerhex[s[0]>>4])
quote.go#L45: buf = append(buf, lowerhex[s[0]&0xF])
quote.go#L100: buf = append(buf, lowerhex[byte(r)>>4])
quote.go#L101: buf = append(buf, lowerhex[byte(r)&0xF])
quote.go#L108: buf = append(buf, lowerhex[r>>uint(s)&0xF])
quote.go#L113: buf = append(buf, lowerhex[r>>uint(s)&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. |