MCPcopy Create free account
hub / github.com/cel-expr/cel-go / fieldQualifier

Struct fieldQualifier

interpreter/attributes.go:1174–1180  ·  view source on GitHub ↗

fieldQualifier indicates that the qualification is a well-defined field with a known field type. When the field type is known this can be used to improve the speed and efficiency of field resolution.

Source from the content-addressed store, hash-verified

1172// field type. When the field type is known this can be used to improve the speed and
1173// efficiency of field resolution.
1174type fieldQualifier struct {
1175 id int64
1176 Name string
1177 FieldType *types.FieldType
1178 adapter types.Adapter
1179 optional bool
1180}
1181
1182// ID is an implementation of the Qualifier interface method.
1183func (q *fieldQualifier) ID() int64 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected