MCPcopy Index your code
hub / github.com/dunglas/httpsfv / isAlpha

Function isAlpha

utils.go:9–11  ·  view source on GitHub ↗

isAlpha checks if c is an alpha character.

(c byte)

Source from the content-addressed store, hash-verified

7
8// isAlpha checks if c is an alpha character.
9func isAlpha(c byte) bool {
10 return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z')
11}
12
13// isDigit checks if c is a digit.
14func isDigit(c byte) bool {

Callers 5

parseBareItemFunction · 0.85
parseBinaryFunction · 0.85
isExtendedTcharFunction · 0.85
marshalSFVMethod · 0.85
parseTokenFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…