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

Function ValidateHomogeneousAggregateLiterals

cel/validator.go:219–221  ·  view source on GitHub ↗

ValidateHomogeneousAggregateLiterals checks that all list and map literals entries have the same types, i.e. no mixed list element types or mixed map key or map value types. Note: the string format call relies on a mixed element type list for ease of use, so this check skips all literals which occu

()

Source from the content-addressed store, hash-verified

217// Note: the string format call relies on a mixed element type list for ease of use, so this check skips all
218// literals which occur within string format calls.
219func ValidateHomogeneousAggregateLiterals() ASTValidator {
220 return homogeneousAggregateLiteralValidator{}
221}
222
223// ValidateComprehensionNestingLimit ensures that comprehension nesting does not exceed the specified limit.
224//

Calls

no outgoing calls