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

FuncType VisitFunc

pkg/sql/ast/visitor.go:316–316  ·  view source on GitHub ↗

VisitFunc is a function type that can be used to implement custom visitors without creating a new type.

func(Node) (Visitor, error)

Source from the content-addressed store, hash-verified

314// VisitFunc is a function type that can be used to implement custom visitors
315// without creating a new type.
316type VisitFunc func(Node) (Visitor, error)
317
318// Visit implements the Visitor interface.
319func (f VisitFunc) Visit(node Node) (Visitor, error) {

Callers 1

TestVisitFuncFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected