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

Function isDigit

utils.go:14–16  ·  view source on GitHub ↗

isDigit checks if c is a digit.

(c byte)

Source from the content-addressed store, hash-verified

12
13// isDigit checks if c is a digit.
14func isDigit(c byte) bool {
15 return '0' <= c && c <= '9'
16}

Callers 4

parseNumberFunction · 0.85
isKeyCharFunction · 0.85
parseBinaryFunction · 0.85
isExtendedTcharFunction · 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…