Sets the collection of attribute patterns that will be recognized as "unknown" values during expression evaluation.
| 90 | // Sets the collection of attribute patterns that will be recognized as |
| 91 | // "unknown" values during expression evaluation. |
| 92 | void set_unknown_attribute_patterns( |
| 93 | std::vector<CelAttributePattern> unknown_attribute_patterns) { |
| 94 | unknown_attribute_patterns_ = std::move(unknown_attribute_patterns); |
| 95 | } |
| 96 | |
| 97 | // Return the collection of attribute patterns that determine "unknown" |
| 98 | // values. |