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

Method QualUint

interpreter/attribute_patterns.go:78–82  ·  view source on GitHub ↗

QualUint adds an uint qualifier pattern for a map index operation to the AttributePattern.

(pattern uint64)

Source from the content-addressed store, hash-verified

76
77// QualUint adds an uint qualifier pattern for a map index operation to the AttributePattern.
78func (apat *AttributePattern) QualUint(pattern uint64) *AttributePattern {
79 apat.qualifierPatterns = append(apat.qualifierPatterns,
80 &AttributeQualifierPattern{value: pattern})
81 return apat
82}
83
84// QualBool adds a bool qualifier pattern for a map index operation to the AttributePattern.
85func (apat *AttributePattern) QualBool(pattern bool) *AttributePattern {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected