| 194 | static CelValue CreateDouble(double value) { return CelValue(value); } |
| 195 | |
| 196 | static CelValue CreateString(StringHolder holder) { |
| 197 | ABSL_ASSERT(::cel::internal::Utf8IsValid(holder.value())); |
| 198 | return CelValue(holder); |
| 199 | } |
| 200 | |
| 201 | // Returns a string value from a string_view. Warning: the caller is |
| 202 | // responsible for the lifecycle of the backing string. Prefer CreateString |
nothing calls this directly
no test coverage detected