MCPcopy Create free account
hub / github.com/crossoverJie/gscript / isLetter

Function isLetter

token/token.go:301–303  ·  view source on GitHub ↗
(b byte)

Source from the content-addressed store, hash-verified

299}
300
301func isLetter(b byte) bool {
302 return b >= 65 && b <= 122
303}
304
305func isDigit(b byte) bool {
306 return b >= 48 && b <= 57

Callers 2

TokenizeFunction · 0.85
InitStatusFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected