MCPcopy Create free account
hub / github.com/jmespath/go-jmespath / JMESPath

Struct JMESPath

api.go:7–10  ·  view source on GitHub ↗

JMESPath is the representation of a compiled JMES path query. A JMESPath is safe for concurrent use by multiple goroutines.

Source from the content-addressed store, hash-verified

5// JMESPath is the representation of a compiled JMES path query. A JMESPath is
6// safe for concurrent use by multiple goroutines.
7type JMESPath struct {
8 ast ASTNode
9 intr *treeInterpreter
10}
11
12// Compile parses a JMESPath expression and returns, if successful, a JMESPath
13// object that can be used to match against data.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected