MCPcopy Create free account
hub / github.com/antchfx/xpath / childQuery

Struct childQuery

query.go:292–299  ·  view source on GitHub ↗

childQuery is an XPath child node query.(child::*)

Source from the content-addressed store, hash-verified

290
291// childQuery is an XPath child node query.(child::*)
292type childQuery struct {
293 name string
294 posit int
295 iterator func() NodeNavigator
296
297 Input query
298 Predicate func(NodeNavigator) bool
299}
300
301func (c *childQuery) Select(t iterator) NodeNavigator {
302 for {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected