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

Function isLowerCaseAlpha

utils.go:4–6  ·  view source on GitHub ↗

isLowerCaseAlpha checks if c is a lower cased alpha character.

(c byte)

Source from the content-addressed store, hash-verified

2
3// isLowerCaseAlpha checks if c is a lower cased alpha character.
4func isLowerCaseAlpha(c byte) bool {
5 return 'a' <= c && c <= 'z'
6}
7
8// isAlpha checks if c is an alpha character.
9func isAlpha(c byte) bool {

Callers 3

isKeyCharFunction · 0.85
checkKeyFunction · 0.85
parseKeyFunction · 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…