MCPcopy Create free account
hub / github.com/ajitpratap0/GoSQLX / isAlphanumeric

Function isAlphanumeric

pkg/lsp/handler.go:1413–1415  ·  view source on GitHub ↗

isAlphanumeric checks if a byte is alphanumeric

(c byte)

Source from the content-addressed store, hash-verified

1411
1412// isAlphanumeric checks if a byte is alphanumeric
1413func isAlphanumeric(c byte) bool {
1414 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9')
1415}
1416
1417// getSQLFunctionSignature returns the signature for a SQL function
1418func getSQLFunctionSignature(funcName string) *SignatureInformation {

Callers 1

getFunctionAtPositionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected