| 192 | static CelValue CreateUint64(uint64_t value) { return CelValue(value); } |
| 193 | |
| 194 | static CelValue CreateDouble(double value) { return CelValue(value); } |
| 195 | |
| 196 | static CelValue CreateString(StringHolder holder) { |
| 197 | ABSL_ASSERT(::cel::internal::Utf8IsValid(holder.value())); |