MCPcopy Create free account
hub / github.com/goadesign/goa / isLower

Function isLower

codegen/funcs.go:376–378  ·  view source on GitHub ↗

isLower returns true if the character is considered a lower case character when transforming word into CamelCase.

(r rune)

Source from the content-addressed store, hash-verified

374// isLower returns true if the character is considered a lower case character
375// when transforming word into CamelCase.
376func isLower(r rune) bool {
377 return unicode.IsDigit(r) || unicode.IsLower(r)
378}
379
380// validIdentifier returns true if the rune is a letter or number
381func validIdentifier(r rune) bool {

Callers 2

concatFunction · 0.85
camelCaseUncachedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected