MCPcopy
hub / github.com/golang/protobuf / isASCIIDigit

Function isASCIIDigit

protoc-gen-go/generator/generator.go:2638–2640  ·  view source on GitHub ↗

Is c an ASCII digit?

(c byte)

Source from the content-addressed store, hash-verified

2636
2637// Is c an ASCII digit?
2638func isASCIIDigit(c byte) bool {
2639 return '0' <= c && c <= '9'
2640}
2641
2642// CamelCase returns the CamelCased name.
2643// If there is an interior underscore followed by a lower case letter,

Callers 1

CamelCaseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected