MCPcopy Index your code
hub / github.com/dropbox/godropbox / isValidKeyChar

Function isValidKeyChar

memcache/raw_binary_client.go:19–21  ·  view source on GitHub ↗
(char byte)

Source from the content-addressed store, hash-verified

17)
18
19func isValidKeyChar(char byte) bool {
20 return (0x21 <= char && char <= 0x7e) || (0x80 <= char && char <= 0xff)
21}
22
23func isValidKeyString(key string) bool {
24 if len(key) > maxKeyLength {

Callers 1

isValidKeyStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected