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

Function FormatUintConstant

common/constant.cc:53–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51std::string FormatIntConstant(int64_t value) { return absl::StrCat(value); }
52
53std::string FormatUintConstant(uint64_t value) {
54 return absl::StrCat(value, "u");
55}
56
57std::string FormatDoubleConstant(double value) {
58 if (std::isfinite(value)) {

Callers 1

AbslStringifyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected