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

Method NewIntDoubleMapValue

common/values/map_value_test.cc:53–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51 public:
52 template <typename... Args>
53 absl::StatusOr<MapValue> NewIntDoubleMapValue(Args&&... args) {
54 auto builder = NewMapValueBuilder(arena());
55 (static_cast<void>(builder->Put(std::forward<Args>(args).first,
56 std::forward<Args>(args).second)),
57 ...);
58 return std::move(*builder).Build();
59 }
60
61 template <typename... Args>
62 absl::StatusOr<MapValue> NewJsonMapValue(Args&&... args) {

Callers

nothing calls this directly

Calls 2

PutMethod · 0.45
BuildMethod · 0.45

Tested by

no test coverage detected