MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / CreateBytesView

Method CreateBytesView

eval/public/cel_value.h:214–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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));

Callers

nothing calls this directly

Calls 1

CelValueClass · 0.85

Tested by

no test coverage detected