MCPcopy Create free account
hub / github.com/GoogleCloudPlatform/cpp-samples / Names

Function Names

getting-started/gcs_indexing.cc:143–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143auto Names() {
144 static auto const names = [] {
145 auto columns = Columns();
146 std::vector<std::string> names(columns.size());
147 std::transform(columns.begin(), columns.end(), names.begin(),
148 [](auto p) { return p.first; });
149 return names;
150 }();
151 return names;
152}
153
154std::size_t ColumnCount() { return Columns().size(); }
155

Callers 1

UpdateObjectMetadataFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected