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

Function isASCIILower

protoc-gen-go/generator/generator.go:2633–2635  ·  view source on GitHub ↗

And now lots of helper functions. Is c an ASCII lower-case letter?

(c byte)

Source from the content-addressed store, hash-verified

2631
2632// Is c an ASCII lower-case letter?
2633func isASCIILower(c byte) bool {
2634 return 'a' <= c && c <= 'z'
2635}
2636
2637// Is c an ASCII digit?
2638func isASCIIDigit(c byte) bool {

Callers 1

CamelCaseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected