| 212 | static CelValue CreateBytes(BytesHolder holder) { return CelValue(holder); } |
| 213 | |
| 214 | static CelValue CreateBytesView(absl::string_view value) { |
| 215 | return CelValue(BytesHolder(value)); |
| 216 | } |
| 217 | |
| 218 | static CelValue CreateBytes(const std::string* str) { |
| 219 | return CelValue(BytesHolder(str)); |