MCPcopy Create free account
hub / github.com/bytedance/bolt / stringify

Function stringify

bolt/dwio/dwrf/test/ReaderTest.cpp:1316–1323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1314namespace {
1315
1316std::vector<std::string> stringify(const std::vector<int32_t>& values) {
1317 std::vector<std::string> converted(values.size());
1318 std::transform(
1319 values.begin(), values.end(), converted.begin(), [](int32_t value) {
1320 return folly::to<std::string>(value);
1321 });
1322 return converted;
1323}
1324
1325std::unordered_map<uint32_t, std::vector<std::string>> makeStructEncodingOption(
1326 const ColumnSelector& cs,

Callers 1

makeStructEncodingOptionFunction · 0.85

Calls 3

sizeMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected