Creates a `ParsedMapFieldValue` without specifying a managing arena. The message must outlive the `ParsedMapFieldValue` or any value that might be derived from it. Prefer to use `cel::Value::WrapMapFieldValueUnsafe()`.
| 227 | // might be derived from it. Prefer to use |
| 228 | // `cel::Value::WrapMapFieldValueUnsafe()`. |
| 229 | inline ParsedMapFieldValue UnsafeParsedMapFieldValue( |
| 230 | const google::protobuf::Message* absl_nonnull message, |
| 231 | const google::protobuf::FieldDescriptor* absl_nonnull field) { |
| 232 | return ParsedMapFieldValue(message, field); |
| 233 | } |
| 234 | |
| 235 | inline std::ostream& operator<<(std::ostream& out, |
| 236 | const ParsedMapFieldValue& value) { |
no test coverage detected