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

Function isWhitespace

pkg/lsp/handler.go:585–587  ·  view source on GitHub ↗

isWhitespace returns true if c is a whitespace character

(c byte)

Source from the content-addressed store, hash-verified

583
584// isWhitespace returns true if c is a whitespace character
585func isWhitespace(c byte) bool {
586 return c == ' ' || c == '\t' || c == '\n' || c == '\r'
587}
588
589// handleHover provides hover information for SQL keywords.
590//

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected