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

Method AssignInt64

eval/public/structs/field_access_impl.cc:382–389  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

380 }
381
382 bool AssignInt64(const CelValue& cel_value) const {
383 int64_t value;
384 if (!cel_value.GetValue(&value)) {
385 return false;
386 }
387 static_cast<const Derived*>(this)->SetInt64(value);
388 return true;
389 }
390
391 bool AssignUInt64(const CelValue& cel_value) const {
392 uint64_t value;

Callers

nothing calls this directly

Calls 2

GetValueMethod · 0.45
SetInt64Method · 0.45

Tested by

no test coverage detected