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

Method FromInt64

internal/number.h:216–216  ·  view source on GitHub ↗

Factories to resolve ambiguous overload resolution against literals.

Source from the content-addressed store, hash-verified

214 public:
215 // Factories to resolve ambiguous overload resolution against literals.
216 static constexpr Number FromInt64(int64_t value) { return Number(value); }
217 static constexpr Number FromUint64(uint64_t value) { return Number(value); }
218 static constexpr Number FromDouble(double value) { return Number(value); }
219

Callers

nothing calls this directly

Calls 1

NumberClass · 0.85

Tested by

no test coverage detected