| 92 | }; |
| 93 | |
| 94 | bool IsNumeric(CelValue::Type type) { |
| 95 | return type == CelValue::Type::kDouble || type == CelValue::Type::kInt64 || |
| 96 | type == CelValue::Type::kUint64; |
| 97 | } |
| 98 | |
| 99 | const CelList& CelListExample1() { |
| 100 | static ContainerBackedListImpl* example = |