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

Method ListValueDebugString

internal/json.cc:1690–1700  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1688 }
1689
1690 void ListValueDebugString(const google::protobuf::MessageLite& message) {
1691 const int size = accessor_->ValuesSize(message);
1692 output_->push_back('[');
1693 for (int i = 0; i < size; ++i) {
1694 if (i > 0) {
1695 output_->append(", ");
1696 }
1697 ValueDebugString(accessor_->Values(message, i));
1698 }
1699 output_->push_back(']');
1700 }
1701
1702 void StructDebugString(const google::protobuf::MessageLite& message) {
1703 const int size = accessor_->FieldsSize(message);

Callers 1

JsonListDebugStringFunction · 0.80

Calls 2

ValuesMethod · 0.80
ValuesSizeMethod · 0.45

Tested by

no test coverage detected