| 132 | } |
| 133 | |
| 134 | void AppendNames(FeatureType & f, vector<string> & columns) |
| 135 | { |
| 136 | vector<string> names(kLangCount); |
| 137 | f.GetNames().ForEach([&names](int8_t code, string_view name) { names[code] = name; }); |
| 138 | columns.insert(columns.end(), next(names.begin()), names.end()); |
| 139 | } |
| 140 | |
| 141 | void PrintAsCSV(vector<string> const & columns, char const delimiter, ostream & out) |
| 142 | { |