| 37 | namespace arrow { |
| 38 | |
| 39 | static std::vector<std::string> UnorderedMapKeys( |
| 40 | const std::unordered_map<std::string, std::string>& map) { |
| 41 | std::vector<std::string> keys; |
| 42 | keys.reserve(map.size()); |
| 43 | for (const auto& pair : map) { |
| 44 | keys.push_back(pair.first); |
| 45 | } |
| 46 | return keys; |
| 47 | } |
| 48 | |
| 49 | static std::vector<std::string> UnorderedMapValues( |
| 50 | const std::unordered_map<std::string, std::string>& map) { |
no test coverage detected