MCPcopy Create free account
hub / github.com/go-pg/pg / isNum

Function isNum

internal/parser/parser.go:135–137  ·  view source on GitHub ↗
(c byte)

Source from the content-addressed store, hash-verified

133}
134
135func isNum(c byte) bool {
136 return c >= '0' && c <= '9'
137}
138
139func isAlpha(c byte) bool {
140 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')

Callers 2

ReadIdentifierMethod · 0.85
ReadNumberMethod · 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…