| 73 | }; |
| 74 | |
| 75 | bool IsNumeric(CelValue::Type type) { |
| 76 | return type == CelValue::Type::kDouble || type == CelValue::Type::kInt64 || |
| 77 | type == CelValue::Type::kUint64; |
| 78 | } |
| 79 | |
| 80 | const CelList& CelListExample1() { |
| 81 | static ContainerBackedListImpl* example = |