Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
19
func
isValidKeyChar(char byte) bool {
20
return
(0x21 <= char && char <= 0x7e) || (0x80 <= char && char <= 0xff)
21
}
22
23
func
isValidKeyString(key string) bool {
24
if
len(key) > maxKeyLength {
Callers
1
isValidKeyString
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected