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

Method NewIntListValue

common/values/list_value_test.cc:41–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39 public:
40 template <typename... Args>
41 absl::StatusOr<ListValue> NewIntListValue(Args&&... args) {
42 auto builder = NewListValueBuilder(arena());
43 (static_cast<void>(builder->Add(std::forward<Args>(args))), ...);
44 return std::move(*builder).Build();
45 }
46};
47
48TEST_F(ListValueTest, Default) {

Callers

nothing calls this directly

Calls 2

AddMethod · 0.45
BuildMethod · 0.45

Tested by

no test coverage detected